Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbuechele committed Sep 14, 2024
1 parent 9878119 commit 59b8cc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {
Scripts,
ScrollRestoration,
isRouteErrorResponse,
useNavigation,
useRouteError,
} from '@remix-run/react';
import apolloClient from './utils/apolloClient';
Expand Down Expand Up @@ -107,6 +106,7 @@ gql`
eventsConnection(first: 1, type: Kulturspektakel) {
edges {
node {
id
...Header
}
}
Expand Down
3 changes: 2 additions & 1 deletion app/types/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ export type RootQuery = {
__typename?: 'QueryEventsConnection';
edges: Array<{
__typename?: 'QueryEventsConnectionEdge';
node: {__typename?: 'Event'; start: Date; end: Date};
node: {__typename?: 'Event'; id: string; start: Date; end: Date};
}>;
};
};
Expand Down Expand Up @@ -2923,6 +2923,7 @@ export const RootDocument = gql`
eventsConnection(first: 1, type: Kulturspektakel) {
edges {
node {
id
...Header
}
}
Expand Down

0 comments on commit 59b8cc7

Please sign in to comment.