Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
mplewis committed Oct 24, 2024
1 parent 480cd82 commit 690010b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions web/src/components/EditEventCell/EditEventCell.mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const standard = (/* vars, { ctx, req } */) => ({
visible: true,
title: 'String',
description: 'String',
location: '',
start: '2021-04-01T00:00:00Z',
end: '2021-04-01T00:00:00Z',
timezone: 'America/Denver',
Expand Down
1 change: 1 addition & 0 deletions web/src/components/EditEventCell/EditEventCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const QUERY = gql`
slug
title
description
location
start
end
timezone
Expand Down
1 change: 1 addition & 0 deletions web/src/components/EditEventForm/EditEventForm.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ describe('EditEventForm', () => {
slug: 'slug',
title: 'title',
description: 'description',
location: '',
start: '2021-01-01T00:00:00.000Z',
end: '2021-01-01T00:00:00.000Z',
}}
Expand Down
2 changes: 2 additions & 0 deletions web/src/components/PreviewEventCell/PreviewEventCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const QUERY = gql`
slug
title
description
location
start
end
timezone
Expand All @@ -41,6 +42,7 @@ export const Success = ({
slug: event.slug,
title: event.title,
description: event.description,
location: event.location,
start: event.start,
end: event.end,
timezone: event.timezone,
Expand Down

0 comments on commit 690010b

Please sign in to comment.