Skip to content

Commit

Permalink
fix(frontend): fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Falinor committed Jan 24, 2025
1 parent 07b9ccf commit 2dbf8c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/services/precision.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { zlvApi } from './api.service';

export const precisionAPI = zlvApi.injectEndpoints({
endpoints: (builder) => ({
findPrecisions: builder.query<Precision[], unknown>({
findPrecisions: builder.query<Precision[], void>({
query: () => 'precisions',
providesTags: () => ['Precision']
})
Expand Down

0 comments on commit 2dbf8c7

Please sign in to comment.