🚨(frontend) run Prettier on the codebase

Ran Prettier on the entire codebase to fix formatting issues. My IDE was
previously misconfigured, causing most of these errors. The IDE configuration
has been corrected.
This commit is contained in:
lebaudantoine
2024-08-06 11:08:01 +02:00
committed by aleb_the_flash
parent 79519fef26
commit 0b6f58bf9c
13 changed files with 61 additions and 42 deletions

View File

@@ -4,7 +4,10 @@ import { useTranslation } from 'react-i18next'
import { Center } from '@/styled-system/jsx'
import { Text } from '@/primitives'
export const ErrorScreen = ({ title, body }: {
export const ErrorScreen = ({
title,
body,
}: {
title?: string
body?: string
}) => {