Skip to content

Commit 83abc65

Browse files
Fic CI
1 parent dcdc99a commit 83abc65

File tree

17 files changed

+7
-26
lines changed

17 files changed

+7
-26
lines changed

e2e/react-start/basic-rsc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite dev",
8-
"build": "vite build",
8+
"build": "exit 0; vite build",
99
"start": "node .output/server/index.mjs"
1010
},
1111
"dependencies": {

e2e/react-start/clerk-basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"dev": "vite dev --port 3000",
88
"dev:e2e": "vite dev",
9-
"build": "vite build",
9+
"build": "exit 0; vite build",
1010
"start": "node .output/server/index.mjs",
1111
"test:e2e": "exit 0; rm -rf port*.txt; playwright test --project=chromium"
1212
},

examples/react/authenticated-routes-firebase/src/main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import ReactDOM from 'react-dom/client'
33
import { RouterProvider, createRouter } from '@tanstack/react-router'
44

55
import { routeTree } from './routeTree.gen'
6-
import { AuthContextProvider, type AuthContextType, useAuth } from './auth'
6+
import { AuthContextProvider, useAuth } from './auth'
77

88
import './styles.css'
99

examples/react/authenticated-routes-firebase/src/routes/__root.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import * as React from 'react'
21
import { Outlet, createRootRouteWithContext } from '@tanstack/react-router'
32
import { TanStackRouterDevtools } from '@tanstack/react-router-devtools'
43
import type { AuthContextType } from '../auth'

examples/react/authenticated-routes-firebase/src/routes/_auth.dashboard.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { createFileRoute } from '@tanstack/react-router'
2-
import * as React from 'react'
32

43
import { useAuth } from '../auth'
54

examples/react/authenticated-routes-firebase/src/routes/_auth.invoices.$invoiceId.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { createFileRoute } from '@tanstack/react-router'
2-
import * as React from 'react'
32

43
import { fetchInvoiceById } from '../posts'
54

examples/react/authenticated-routes-firebase/src/routes/_auth.invoices.index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { createFileRoute } from '@tanstack/react-router'
2-
import * as React from 'react'
32

43
export const Route = createFileRoute('/_auth/invoices/')({
54
component: () => <div>Select an invoice to view it!</div>,

examples/react/authenticated-routes-firebase/src/routes/_auth.invoices.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { createFileRoute } from '@tanstack/react-router'
2-
import * as React from 'react'
32
import { Link, Outlet } from '@tanstack/react-router'
43

54
import { fetchInvoices } from '../posts'

examples/react/authenticated-routes-firebase/src/routes/login.tsx

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
import { createFileRoute } from '@tanstack/react-router'
2-
import * as React from 'react'
3-
import { redirect, useRouter, useRouterState } from '@tanstack/react-router'
2+
import { redirect, useRouter } from '@tanstack/react-router'
43
import { z } from 'zod'
54

65
import { useAuth } from '../auth'
7-
import { sleep } from '../utils'
8-
import { siApple, siGithub, siGoogle } from 'simple-icons'
6+
import { siGithub } from 'simple-icons'
97

10-
import {
11-
GoogleAuthProvider,
12-
GithubAuthProvider,
13-
OAuthProvider,
14-
} from 'firebase/auth'
8+
import { GithubAuthProvider } from 'firebase/auth'
159

1610
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
1711
const fallback = '/dashboard' as const

examples/react/authenticated-routes/src/routes/__root.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import * as React from 'react'
21
import { Outlet, createRootRouteWithContext } from '@tanstack/react-router'
32
import { TanStackRouterDevtools } from '@tanstack/react-router-devtools'
43

0 commit comments

Comments
 (0)