Skip to content

Commit 6a8761f

Browse files
committed
fix: update Login component to use correct environment variable for email
1 parent 0855630 commit 6a8761f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/src/Login.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ interface LoginProps {
2929
export const Login = ({ onLoggedIn = () => {} }: LoginProps) => {
3030
const [initialized, setInitialized] = useState(false);
3131
const [email, setEmail] = useState(
32-
process.env.EXPO_PUBLIC_ITERABLE_API_KEY ?? ''
32+
process.env.EXPO_PUBLIC_ITERABLE_EMAIL ?? ''
3333
);
3434

3535
useEffect(() => {

0 commit comments

Comments
 (0)