Skip to content

Commit

Permalink
fix: prettier and tsc errs
Browse files Browse the repository at this point in the history
  • Loading branch information
vucinatim committed May 29, 2024
1 parent 80df1e7 commit e15bb42
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,7 @@ next-env.d.ts

# Ignore autogenerated files
.infisical.json
components.json
components.json

# Handlebars templates
zodios-client-template.hbs
2 changes: 1 addition & 1 deletion src/components/examples/zodios-client-example.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
PopoverTrigger,
} from '@/components/ui/popover';
import { cn } from '@/lib/utils';
import { api } from '@/zodios/zodios';
import { api } from '@/zodios/index';
import { Check, ChevronsUpDown } from 'lucide-react';
import { useState } from 'react';

Expand Down
2 changes: 1 addition & 1 deletion src/components/examples/zodios-server-example.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* eslint-disable react/jsx-no-literals */
import { apiClient } from '@/zodios/zodios';
import { apiClient } from '@/zodios/index';

const ZodiosServerExample = async () => {
const data = await apiClient.getRandomJoke();
Expand Down

0 comments on commit e15bb42

Please sign in to comment.