Skip to content

Commit

Permalink
next: apiSlice fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinelliott committed Sep 7, 2024
1 parent 73e1bdd commit 4030f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/slices/apiSlice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const apiSlice = createApi({
},
providesTags: [{ type: "Chat", id: "LIST" }],
}),
getNodes: builder.query<INodesResponse, { status: "online" }>({
getNodes: builder.query<INodesResponse, void | { status: "online" }>({
query: () => "nodes",
transformResponse: (response: INodesResponse) =>
Object.fromEntries(
Expand Down

0 comments on commit 4030f1c

Please sign in to comment.