Skip to content

Commit

Permalink
fix: change Icon type
Browse files Browse the repository at this point in the history
  • Loading branch information
martapanc committed Aug 22, 2023
1 parent 328547e commit 8317109
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/(public)/about/work/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ import { publicationQueryQL } from '@/queries/publications';
import { schoolsQueryQL } from '@/queries/schools';
import { shortTextQuery } from '@/queries/short-texts';
import { skillQueryQL } from '@/queries/skills';
import { Icon } from '@/sanityTypes/Icon';
import { ShortText } from '@/sanityTypes/ShortText';

import apolloClient from '../../../../../apollo/apollo-client';
import { sanityClient } from '../../../../../sanity/lib/client';

import { Icon } from '@/types/Icon';
import { Job } from '@/types/Job';
import { Language } from '@/types/Language';
import { Publication } from '@/types/Publication';
Expand Down Expand Up @@ -155,7 +155,7 @@ const AboutPage = async () => {
key={icon.id}
height={iconDimension}
width={iconDimension}
alt={icon.title}
alt={icon.name}
src={icon.url}
/>
))}
Expand Down

0 comments on commit 8317109

Please sign in to comment.