diff --git a/app/web/src/components/EditUserCell/EditUserCell.mock.js b/app/web/src/components/EditUserCell/EditUserCell.mock.js
deleted file mode 100644
index 310da08..0000000
--- a/app/web/src/components/EditUserCell/EditUserCell.mock.js
+++ /dev/null
@@ -1,6 +0,0 @@
-// Define your own mock data here:
-export const standard = (/* vars, { ctx, req } */) => ({
- editUser: {
- id: 42,
- },
-})
diff --git a/app/web/src/components/EditUserCell/EditUserCell.stories.js b/app/web/src/components/EditUserCell/EditUserCell.stories.js
deleted file mode 100644
index e5d2a28..0000000
--- a/app/web/src/components/EditUserCell/EditUserCell.stories.js
+++ /dev/null
@@ -1,20 +0,0 @@
-import { Loading, Empty, Failure, Success } from './EditUserCell'
-import { standard } from './EditUserCell.mock'
-
-export const loading = () => {
- return Loading ? : null
-}
-
-export const empty = () => {
- return Empty ? : null
-}
-
-export const failure = () => {
- return Failure ? : null
-}
-
-export const success = () => {
- return Success ? : null
-}
-
-export default { title: 'Cells/EditUserCell' }
diff --git a/app/web/src/components/EditUserCell/EditUserCell.test.js b/app/web/src/components/EditUserCell/EditUserCell.test.js
deleted file mode 100644
index f3f90be..0000000
--- a/app/web/src/components/EditUserCell/EditUserCell.test.js
+++ /dev/null
@@ -1,26 +0,0 @@
-import { render, screen } from '@redwoodjs/testing'
-import { Loading, Empty, Failure, Success } from './EditUserCell'
-import { standard } from './EditUserCell.mock'
-
-describe('EditUserCell', () => {
- test('Loading renders successfully', () => {
- render()
- // Use screen.debug() to see output
- expect(screen.getByText('Loading...')).toBeInTheDocument()
- })
-
- test('Empty renders successfully', async () => {
- render()
- expect(screen.getByText('Empty')).toBeInTheDocument()
- })
-
- test('Failure renders successfully', async () => {
- render()
- expect(screen.getByText(/Oh no/i)).toBeInTheDocument()
- })
-
- test('Success renders successfully', async () => {
- render()
- expect(screen.getByText(/42/i)).toBeInTheDocument()
- })
-})
diff --git a/app/web/src/components/EditUserCell/EditUserCell.js b/app/web/src/components/EditUserCell/EditUserCell.tsx
similarity index 97%
rename from app/web/src/components/EditUserCell/EditUserCell.js
rename to app/web/src/components/EditUserCell/EditUserCell.tsx
index 676811e..9814c6e 100644
--- a/app/web/src/components/EditUserCell/EditUserCell.js
+++ b/app/web/src/components/EditUserCell/EditUserCell.tsx
@@ -23,6 +23,9 @@ const UPDATE_USER_MUTATION = gql`
updateUserByUserName(userName: $userName, input: $input) {
id
userName
+ bio
+ name
+ image
}
}
`