Skip to content

Commit

Permalink
πŸ› Remove invalid event name
Browse files Browse the repository at this point in the history
  • Loading branch information
cermakjiri committed Dec 5, 2024
1 parent c72bce9 commit 11d5969
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import Link from 'next/link';

import { queryClient } from '@workspace/common/client/api/components';
import { track } from '@workspace/common/client/firebase/analytics';
import { EmailField, Form, FormError, SubmitButton } from '@workspace/common/client/form/components';
import { FieldsStack } from '@workspace/common/client/form/components/';
import { Alert, Box, Button, Divider, Words } from '@workspace/common/client/ui-kit';
Expand Down Expand Up @@ -59,13 +58,7 @@ export const LoginWithPasskeyPage = () => {
/>
</FieldsStack>

<SubmitButton
sx={{ mt: 3 }}
endIcon={<Fingerprint />}
onClick={() => {
track('example_default_login');
}}
>
<SubmitButton sx={{ mt: 3 }} endIcon={<Fingerprint />}>
Login with Passkey
</SubmitButton>
</Form>
Expand Down

0 comments on commit 11d5969

Please sign in to comment.