We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 530a099 commit c4ddebcCopy full SHA for c4ddebc
app/pages/settings/ProfilePage.tsx
@@ -14,13 +14,15 @@ import { TextField } from '~/components/form/fields/TextField'
14
import { FullPageForm } from '~/components/form/FullPageForm'
15
import { useForm } from '~/hooks'
16
import { useCurrentUser } from '~/layouts/AuthenticatedLayout'
17
+import { getActionsCol } from '~/table/columns/action-col'
18
import { Table } from '~/table/Table'
19
20
const colHelper = createColumnHelper<Group>()
21
22
const columns = [
- colHelper.accessor('id', { header: 'ID' }),
23
colHelper.accessor('displayName', { header: 'Name' }),
24
+ // use _row to prevent eslint from complaining about the unused variable
25
+ getActionsCol((_row: Group) => []),
26
]
27
28
export function ProfilePage() {
0 commit comments