ignore: cloud

This commit is contained in:
Jay V
2025-08-28 14:12:31 -04:00
parent 02e014b0a0
commit eff50c0aab
3 changed files with 5 additions and 1 deletions

View File

@@ -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>

View File

@@ -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",

View File

@@ -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)