Skip to content

Commit ddf48a0

Browse files
committed
Minor cleanup.
1 parent 261b2a2 commit ddf48a0

File tree

1 file changed

+3
-4
lines changed
  • demos/react-supabase-todolist/src/app/views/sql-console

1 file changed

+3
-4
lines changed

demos/react-supabase-todolist/src/app/views/sql-console/page.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
'use client';
2-
import _ from 'lodash';
32
import React from 'react';
43
import { usePowerSyncWatchedQuery } from '@journeyapps/powersync-react';
54
import { Box, Button, Grid, TextField, styled } from '@mui/material';
@@ -24,9 +23,9 @@ export default function SQLConsolePage() {
2423
return {
2524
columns: firstItem
2625
? Object.keys(firstItem).map((field) => ({
27-
field,
28-
flex: 1
29-
}))
26+
field,
27+
flex: 1
28+
}))
3029
: [],
3130
rows: querySQLResult
3231
};

0 commit comments

Comments
 (0)