Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
GregTCLTK committed Feb 28, 2024
1 parent 41f8c47 commit 8e02c27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions pages/admin/state.ts
Expand Up @@ -23,6 +23,7 @@ export const state = asState({
});

export const reviewState = asState({
// deno-lint-ignore no-explicit-any
drop: <Drop & { user: ProfileData; events: any[]; } | undefined>undefined,
drops: <Drop[] | undefined>undefined,
});
1 change: 1 addition & 0 deletions pages/shared/restSpec.ts
Expand Up @@ -286,6 +286,7 @@ export const API = {
id: (id: string) => fetch(`${API.BASE_URL}admin/drops/${id}`, {
headers: headers(API.getToken())
})
// deno-lint-ignore no-explicit-any
.then(json<Drop & { user: ProfileData; events: any[]; }>())
.catch(reject),
sync: () => fetch(`${API.BASE_URL}admin/sync_mapping`, {
Expand Down

0 comments on commit 8e02c27

Please sign in to comment.