Skip to content

Commit

Permalink
style: 🎨 prettier fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
megasanjay committed Mar 7, 2023
1 parent 9d40337 commit c506ce9
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/components.tsx
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ import NextImage from '@/components/NextImage';
import Seo from '@/components/Seo';
import Skeleton from '@/components/Skeleton';

type Color = typeof colorList[number];
type Color = (typeof colorList)[number];

export default function ComponentsPage() {
const [mode, setMode] = useState<'dark' | 'light'>('light');
2 changes: 1 addition & 1 deletion src/pages/cookies/index.tsx
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ const CookiePolicyPage: React.FC<{ pageContent: string }> = ({
<main className='relative mx-auto flex h-full w-full max-w-screen-xl flex-col overflow-hidden py-5 px-5 sm:px-10 sm:pb-20'>
<SkipNavContent />

<div className='prose-a:text-primary prose prose-slate max-w-none prose-img:mx-auto prose-img:rounded-md prose-img:shadow-xl lg:prose-base'>
<div className='prose-a:text-primary prose prose-slate max-w-none lg:prose-base prose-img:mx-auto prose-img:rounded-md prose-img:shadow-xl'>
<div dangerouslySetInnerHTML={{ __html: pageContent }} />
</div>
</main>
2 changes: 1 addition & 1 deletion src/pages/privacy/index.tsx
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ const PrivacyPolicyPage: React.FC<{ pageContent: string }> = ({
<main className='relative mx-auto flex h-full w-full max-w-screen-xl flex-col overflow-hidden py-5 px-5 sm:px-10 sm:pb-20'>
<SkipNavContent />

<div className='prose-a:text-primary prose prose-slate max-w-none prose-img:mx-auto prose-img:rounded-md prose-img:shadow-xl lg:prose-base'>
<div className='prose-a:text-primary prose prose-slate max-w-none lg:prose-base prose-img:mx-auto prose-img:rounded-md prose-img:shadow-xl'>
<div dangerouslySetInnerHTML={{ __html: pageContent }} />
</div>
</main>
2 changes: 1 addition & 1 deletion src/pages/publications/index.tsx
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ const PublicationsPage: React.FC<{ pageContent: string }> = ({
<main className='relative mx-auto flex h-full w-full max-w-screen-xl flex-col overflow-hidden py-5 px-5 sm:px-10 sm:pb-20'>
<SkipNavContent />

<div className='prose-a:text-primary prose prose-slate max-w-none prose-img:mx-auto prose-img:rounded-md prose-img:shadow-xl lg:prose-base'>
<div className='prose-a:text-primary prose prose-slate max-w-none lg:prose-base prose-img:mx-auto prose-img:rounded-md prose-img:shadow-xl'>
<div dangerouslySetInnerHTML={{ __html: pageContent }} />
</div>
</main>

1 comment on commit c506ce9

@vercel
Copy link

@vercel vercel bot commented on c506ce9 Mar 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

aireadi-org – ./

www.aireadi.org
aireadi-org-fairdataihub.vercel.app
aireadi-org-git-main-fairdataihub.vercel.app
aireadi.org

Please sign in to comment.