Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added packages/app/pr/screenshots/minimap-rail-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added packages/app/pr/screenshots/minimap-rail-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/app/src/app/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1971,6 +1971,7 @@ export default function App() {
listAgents={listAgents}
setSessionAgent={setSessionAgent}
saveSession={saveSessionExport}
sessionStatusById={activeSessionStatusById()}
onTryNotionPrompt={() => {
setPrompt("setup my crm");
setTryNotionPromptVisible(false);
Expand Down
5 changes: 5 additions & 0 deletions packages/app/src/app/demo-state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export function createDemoState(options: {
name: "Demo",
path: "~/OpenWork Demo",
preset: "starter",
workspaceType: "local",
});

const isDemoMode = createMemo(() => demoMode());
Expand Down Expand Up @@ -106,6 +107,7 @@ export function createDemoState(options: {
name: "Home",
path: "~/OpenWork Demo",
preset: "starter",
workspaceType: "local",
});
setDemoSessions([baseSession]);
setDemoSessionStatusById({ [baseSession.id]: "completed" });
Expand Down Expand Up @@ -140,6 +142,7 @@ export function createDemoState(options: {
name: "Finance",
path: "~/OpenWork Demo/finance",
preset: "starter",
workspaceType: "local",
});
setDemoSessions([{ ...baseSession, title: "Weekly finance recap" }]);
setDemoSessionStatusById({ [baseSession.id]: "completed" });
Expand Down Expand Up @@ -183,6 +186,7 @@ export function createDemoState(options: {
name: "Notes",
path: "~/OpenWork Demo/notes",
preset: "starter",
workspaceType: "local",
});
setDemoSessions([{ ...baseSession, title: "Notes summary" }]);
setDemoSessionStatusById({ [baseSession.id]: "completed" });
Expand Down Expand Up @@ -217,6 +221,7 @@ export function createDemoState(options: {
name: "Home",
path: "~/OpenWork Demo/home",
preset: "starter",
workspaceType: "local",
});
setDemoSessions([{ ...baseSession, title: "Grocery order" }]);
setDemoSessionStatusById({ [baseSession.id]: "completed" });
Expand Down
Loading
Loading