Skip to content

Commit dae7253

Browse files
style: format code with Prettier
This commit fixes the style issues introduced in 0d5580f according to the output from Prettier. Details: #36
1 parent 0d5580f commit dae7253

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

md-docs/1.getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ In some cases you might want to initialize the state with a function, for exampl
9090

9191
```tsx
9292
const [state, setState] = useRGS<number>("counter", () =>
93-
typeof localStorage === "undefined" ? 1 : (localStorage.getItem("counter") ?? 1),
93+
typeof localStorage === "undefined" ? 1 : localStorage.getItem("counter") ?? 1,
9494
);
9595
```
9696

0 commit comments

Comments
 (0)