Files
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

13 lines
293 B
TypeScript
Executable File

// store this in a separate file, to avoid importing query client and axios in pixie
let activeWorkspaceId = 0;
// for access outside react
export function getActiveWorkspaceId() {
return activeWorkspaceId;
}
export function setActiveWorkspaceId(id: number) {
activeWorkspaceId = id;
}