Skip to content

Commit 83eeb8d

Browse files
committed
wip: formatting
1 parent 12e51c3 commit 83eeb8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/guestbook-solid-js/src/doctype.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { DocType, serializeMutationAsJSON } from "@orbitinghail/sqlsync-worker";
33

44
const REDUCER_URL = new URL(
55
"../../../target/wasm32-unknown-unknown/release/reducer_guestbook.wasm",
6-
import.meta.url
6+
import.meta.url,
77
);
88

99
// Must match the Mutation type in the Rust Reducer code

examples/guestbook-solid-js/src/main.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export function App() {
6464
() => sql`
6565
select id, msg from messages
6666
order by created_at
67-
`
67+
`,
6868
);
6969

7070
const rows = () => queryState().rows ?? [];
@@ -103,12 +103,12 @@ export function App() {
103103
}
104104

105105
// Configure the SQLSync provider near the top of the React tree
106-
// biome-ignore lint/style/noNonNullAssertion: we know this element exists
107106
render(
108107
() => (
109108
<SQLSyncProvider wasmUrl={sqlSyncWasmUrl} workerUrl={workerUrl}>
110109
<App />
111110
</SQLSyncProvider>
112111
),
113-
document.getElementById("root")!
112+
// biome-ignore lint/style/noNonNullAssertion: we know this element exists
113+
document.getElementById("root")!,
114114
);

0 commit comments

Comments
 (0)