chore: bump version (#3041)

This commit is contained in:
Alex Yang
2023-07-06 11:49:17 +08:00
committed by GitHub
parent e95d28e136
commit fa1cd87348
44 changed files with 508 additions and 495 deletions
@@ -6,7 +6,7 @@ import { useAtom } from 'jotai';
*/
export function useCurrentPageId(): [
string | null,
(newId: string | null) => void
(newId: string | null) => void,
] {
return useAtom(rootCurrentPageIdAtom);
}
@@ -11,7 +11,7 @@ import type { AllWorkspace } from '../../shared';
export function useCurrentWorkspace(): [
AllWorkspace,
(id: string | null) => void
(id: string | null) => void,
] {
const currentWorkspace = useAtomValue(rootCurrentWorkspaceAtom);
const [, setId] = useAtom(rootCurrentWorkspaceIdAtom);