Parcourir la source

ignore: cloud

Jay V il y a 5 mois
Parent
commit
eff50c0aab
3 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 1 1
      cloud/app/src/app.tsx
  2. 3 0
      cloud/app/src/context/auth.tsx
  3. 1 0
      cloud/app/src/routes/index.tsx

+ 1 - 1
cloud/app/src/app.tsx

@@ -10,7 +10,7 @@ export default function App() {
     <Router
       root={props => (
         <MetaProvider>
-          <Title>SolidStart - Basic</Title>
+          <Title>opencode</Title>
           <ErrorBoundary fallback={<div>Something went wrong</div>}>
             <Suspense>{props.children}</Suspense>
           </ErrorBoundary>

+ 3 - 0
cloud/app/src/context/auth.tsx

@@ -21,8 +21,11 @@ export const getActor = query(async (): Promise<Actor.Info> => {
   const url = new URL(evt!.request.headers.get("referer") ?? evt!.request.url)
   const auth = await useAuthSession()
   const [workspaceHint] = url.pathname.split("/").filter((x) => x.length > 0)
+  console.log("here1")
   if (!workspaceHint) {
+    console.log("here2")
     if (auth.data.current) {
+      console.log("here3")
       const current = auth.data.account[auth.data.current]
       return {
         type: "account",

+ 1 - 0
cloud/app/src/routes/index.tsx

@@ -23,6 +23,7 @@ function CopyStatus() {
 const isLoggedIn = query(async () => {
   "use server"
   const actor = await getActor()
+  console.log(actor)
   if (actor.type === "account") {
     const workspaces = await withActor(() => Account.workspaces())
     throw redirect("/" + workspaces[0].id)