Skip to content

Commit

Permalink
🚨 Fix lint issues #2338
Browse files Browse the repository at this point in the history
  • Loading branch information
padms committed May 29, 2024
1 parent 5f5affa commit b47777d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/pageComponents/pageTemplates/Event.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import type { EventSchema } from '../../types/types'
import { EventJsonLd } from 'next-seo'
import Blocks from '../../pageComponents/shared/portableText/Blocks'
import { twMerge } from 'tailwind-merge'
import RelatedContent from 'pageComponents/shared/RelatedContent'
import RelatedContent from '../../pageComponents/shared/RelatedContent'

export default function Event({ data }: { data: EventSchema }): JSX.Element {
const { title } = data
Expand Down
2 changes: 1 addition & 1 deletion web/pageComponents/pageTemplates/News.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import type { NewsSchema } from '../../types/types'
import { toPlainText } from '@portabletext/react'
import Blocks from '../shared/portableText/Blocks'
import { twMerge } from 'tailwind-merge'
import RelatedContent from 'pageComponents/shared/RelatedContent'
import RelatedContent from '../../pageComponents/shared/RelatedContent'

const NewsLayout = styled.div`
--banner-paddingHorizontal: clamp(16px, calc(-69.1942px + 22.7184vw), 367px);
Expand Down

0 comments on commit b47777d

Please sign in to comment.