Skip to content

Commit

Permalink
🔊
Browse files Browse the repository at this point in the history
  • Loading branch information
tidnav committed May 21, 2024
1 parent 3081c19 commit 1d22856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/api/oppslag/fastlege.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const getFastlege = async (accessToken?: string): Promise<Fastlege[]> =>

const validatedResponse = z.array(Fastlege).safeParse(fastlege);
if (!validatedResponse.success) {
logError(`oppslag/person valideringsfeil: ${validatedResponse.error.message}`);
logError(`oppslag/fastlege valideringsfeil: ${validatedResponse.error.message}`);
return [];
}
return validatedResponse.data;
Expand Down

0 comments on commit 1d22856

Please sign in to comment.