Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Magic production key added. #205

Merged
merged 2 commits into from Mar 3, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/auth.js
Expand Up @@ -158,7 +158,7 @@ function VerifyEmailModal(props) {
let { email, setEmail, nickname, setNickname } = props;
const { user, setUser } = props;
const [error, setError] = useState('');
const magic = useRef(new Magic('pk_test_90E65EC554AC32F6'));
const magic = useRef(new Magic('pk_live_AF81E967B87694E3'));

async function verifyEmail(e) {
e.preventDefault();
Expand Down
7 changes: 5 additions & 2 deletions src/pages/tezos/customizebot.js
Expand Up @@ -367,8 +367,6 @@ const Customizer = () => {

const [isUser] = useAtom(isUserAtom);



const getMeshName = name => {
const filterType = Object.keys(botColors.items);

Expand Down Expand Up @@ -487,6 +485,10 @@ const Customizer = () => {
};

const isBrowser = typeof window !== 'undefined';
const canvas = useRef(null);
bhaskarSingh marked this conversation as resolved.
Show resolved Hide resolved
useEffect(() => {
console.log('🔥', canvas);
}, []);

return (
<div
Expand Down Expand Up @@ -793,6 +795,7 @@ const Customizer = () => {
concurrent
pixelRatio={[1, 1.5]}
camera={{ position: [0, 0, 5.75], fov: 80 }}
ref={canvas}
>
<ambientLight intensity={0.5} />
<spotLight
Expand Down