Skip to content

Commit

Permalink
update title
Browse files Browse the repository at this point in the history
  • Loading branch information
nsbradford committed Oct 9, 2023
1 parent 9686715 commit 0908704
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,3 @@ ports:
port: 65455
onOpen: ignore
visibility: public


2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ yarn format
```

### Test

uses Playwright

```bash
yarn test:e2e
```
Expand Down
5 changes: 5 additions & 0 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@ import { SessionContextProvider } from '@supabase/auth-helpers-react';
import type { AppProps } from 'next/app';
import { Analytics } from '@vercel/analytics/react';
import { useState } from 'react';
import Head from 'next/head';
config.autoAddCss = false;

export default function App({ Component, pageProps }: AppProps) {
const [supabaseClient] = useState(() => createPagesBrowserClient());
return (
<>
<Head>
<title>TalkForm AI</title>
</Head>

<GoogleAnalytics
GA_TRACKING_ID={process.env.NEXT_PUBLIC_GA_TRACKING_ID}
/>
Expand Down
2 changes: 1 addition & 1 deletion tests/form-fill.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ async function runTestScenario(
page: Page,
formId: string,
messages: string[],
expected: object,
expected: object
) {
// Navigate to the specified URL
await page.goto(`http://localhost:3000/forms/fill/${formId}`);
Expand Down

0 comments on commit 0908704

Please sign in to comment.