Skip to content

Commit 83092c4

Browse files
committed
Fixing errors
1 parent 1c7d32e commit 83092c4

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/sdk.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ jobs:
7878
template:
7979
- extension
8080
- nextjs-ts
81-
- node-ts
8281
- offline-public-transaction-ts
8382
- react-leo
8483
#- react-managed-worker

create-leo-app/template-nextjs-ts/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

create-leo-app/template-nextjs-ts/src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Home() {
1717
workerRef.current?.postMessage("execute");
1818
}
1919

20-
const workerRef = useRef<Worker>();
20+
const workerRef = useRef<Worker | null>(null);
2121

2222
interface AleoWorkerMessageEvent {
2323
type: string;

0 commit comments

Comments
 (0)