Skip to content

Commit 45ba14a

Browse files
committed
Some demo cleanup.
1 parent aab8ce4 commit 45ba14a

File tree

4 files changed

+2
-26
lines changed

4 files changed

+2
-26
lines changed

demos/nextjs-supabase-todolist/package.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,14 @@
99
"start": "pnpm build && pnpm preview"
1010
},
1111
"dependencies": {
12-
"@emotion/react": "^11.11.3",
13-
"@emotion/styled": "^11.11.0",
14-
"@fontsource/roboto": "^5.0.8",
1512
"@journeyapps/powersync-react": "workspace:*",
1613
"@journeyapps/powersync-sdk-web": "workspace:*",
1714
"@journeyapps/wa-sqlite": "~0.1.1",
18-
"@mui/icons-material": "^5.15.8",
1915
"@mui/material": "^5.15.7",
2016
"@mui/x-data-grid": "^6.19.3",
2117
"@supabase/supabase-js": "^2.39.3",
22-
"formik": "^2.4.5",
2318
"js-logger": "^1.6.1",
2419
"lodash": "^4.17.21",
25-
"next": "14.1.0",
2620
"react": "^18",
2721
"react-dom": "^18",
2822
"react-router-dom": "^6.22.1"

demos/nextjs-supabase-todolist/src/app/views/todo-lists/edit/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ const TodoEditSection = () => {
137137
<DialogContentText id="alert-dialog-description">
138138
Enter a description for a new todo item
139139
</DialogContentText>
140-
<TextField sx={{ marginTop: '10px' }} fullWidth inputRef={nameInputRef} autoFocus label="Name" />
140+
<TextField sx={{ marginTop: '10px' }} fullWidth inputRef={nameInputRef} autoFocus label="Task Name" />
141141
</DialogContent>
142142
<DialogActions>
143143
<Button onClick={() => setShowPrompt(false)}>Cancel</Button>

demos/nextjs-supabase-todolist/src/app/views/todo-lists/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default function TodoListsPage() {
7070
<DialogTitle id="alert-dialog-title">{'Create Todo List'}</DialogTitle>
7171
<DialogContent>
7272
<DialogContentText id="alert-dialog-description">Enter a name for a new todo list</DialogContentText>
73-
<TextField sx={{ marginTop: '10px' }} fullWidth inputRef={nameInputRef} label="Name" autoFocus />
73+
<TextField sx={{ marginTop: '10px' }} fullWidth inputRef={nameInputRef} label="List Name" autoFocus />
7474
</DialogContent>
7575
<DialogActions>
7676
<Button onClick={() => setShowPrompt(false)}>Cancel</Button>

pnpm-lock.yaml

Lines changed: 0 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)