We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b35bfe commit b4c1600Copy full SHA for b4c1600
example/src/Login.tsx
@@ -28,7 +28,9 @@ interface LoginProps {
28
29
export const Login = ({ onLoggedIn = () => {} }: LoginProps) => {
30
const [initialized, setInitialized] = useState(false);
31
- const [email, setEmail] = useState('');
+ const [email, setEmail] = useState(
32
+ process.env.EXPO_PUBLIC_ITERABLE_API_KEY ?? ''
33
+ );
34
35
useEffect(() => {
36
const config = new IterableConfig();
0 commit comments