Skip to content

Commit a3e6f09

Browse files
authored
Packagejson+lock (#510)
* packagejson+lock * ts
1 parent 207d47b commit a3e6f09

File tree

5 files changed

+7265
-7723
lines changed

5 files changed

+7265
-7723
lines changed

apps/desktop/src/routes/(window-chrome)/settings.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { SignInButton } from "~/components/SignInButton";
88

99
import { authStore } from "~/store";
1010
import { trackEvent } from "~/utils/analytics";
11-
import { commands } from "~/utils/tauri";
1211

1312
type MenuItem =
1413
| { type?: "link"; href: string; name: string; icon: any }

apps/desktop/src/routes/(window-chrome)/settings/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { useSearchParams } from "@solidjs/router";
33

44
export default function Settings() {
55
const [searchParams] = useSearchParams();
6-
const page = searchParams.page || "general";
6+
const page = searchParams.page as string || "general";
77

88
return <Navigate href={page} />;
99
}

apps/desktop/src/utils/events.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export function makeInvalidated<R>(
1616
return resource;
1717
}
1818

19-
export function createQueryInvalidate<T extends CreateQueryResult<any, any>>(
19+
export function createQueryInvalidate<T extends CreateQueryResult>(
2020
query: T,
2121
event: keyof typeof events
2222
) {

package.json

-5
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,5 @@
3535
"name": "cap",
3636
"engines": {
3737
"node": "20"
38-
},
39-
"pnpm": {
40-
"patchedDependencies": {
41-
"@kobalte/[email protected]": "patches/@[email protected]"
42-
}
4338
}
4439
}

0 commit comments

Comments
 (0)