We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 785aad0 commit 377e25eCopy full SHA for 377e25e
2 files changed
packages/app/src/use/file.ts
@@ -35,7 +35,7 @@ export const useFile = () => {
35
return
36
}
37
38
- const data = destr(system.data.value)
+ const data = destr<Record<string, unknown>>(system.data.value)
39
40
res(data)
41
})
packages/types/src/auth.ts
@@ -1,7 +1,9 @@
1
+import { Maybe } from "./utils";
2
+
3
export interface AuthState {
4
// TODO: user typing
5
user: any
6
account: {
- project_id_activity?: number,
7
+ project_id_activity: Maybe<number>,
8
},
9
0 commit comments