Spaces:
Runtime error
Runtime error
Commit
·
104f131
1
Parent(s):
010afb3
minor fix
Browse files- src/app/engines.ts +1 -1
- src/app/main.tsx +1 -1
src/app/engines.ts
CHANGED
@@ -71,6 +71,6 @@ export const engines: Record<string, Engine> = {
|
|
71 |
}
|
72 |
}
|
73 |
|
74 |
-
export const defaultEngine: EngineType = "
|
75 |
|
76 |
export const getEngine = (type?: EngineType): Engine => engines[type || defaultEngine] || engines[defaultEngine]
|
|
|
71 |
}
|
72 |
}
|
73 |
|
74 |
+
export const defaultEngine: EngineType = "spherical_image"
|
75 |
|
76 |
export const getEngine = (type?: EngineType): Engine => engines[type || defaultEngine] || engines[defaultEngine]
|
src/app/main.tsx
CHANGED
@@ -357,7 +357,7 @@ export default function Main() {
|
|
357 |
<div
|
358 |
className="flex flex-col w-full max-w-5xl"
|
359 |
>
|
360 |
-
<div className="flex flex-row w-full justify-between items-center px-2 py-2 border-b-1 border-gray-50 dark:border-gray-50 bg-gray-800 dark:bg-gray-800">
|
361 |
<div className="flex flex-row items-center space-x-3 font-mono">
|
362 |
<Label className="flex text-sm">Select a story:</Label>
|
363 |
<Select
|
|
|
357 |
<div
|
358 |
className="flex flex-col w-full max-w-5xl"
|
359 |
>
|
360 |
+
<div className="flex flex-row w-full justify-between items-center px-2 py-2 border-b-1 border-gray-50 dark:border-gray-50 bg-gray-800 dark:bg-gray-800 text-gray-50 dark:text-gray-50">
|
361 |
<div className="flex flex-row items-center space-x-3 font-mono">
|
362 |
<Label className="flex text-sm">Select a story:</Label>
|
363 |
<Select
|