Merged in fix/3697-prettier-configs (pull request #3396)

fix(SW-3691): Setup one prettier config for whole repo

* Setup prettierrc in root and remove other configs


Approved-by: Joakim Jäderberg
Approved-by: Linus Flood
This commit is contained in:
Rasmus Langvad
2026-01-07 12:45:50 +00:00
parent 932413412b
commit d0546926a9
500 changed files with 18367 additions and 18419 deletions

View File

@@ -1,14 +1,14 @@
'use client'
import { AnimatePresence, motion } from 'motion/react'
import { useEffect, useState } from 'react'
import { Dialog, Modal, ModalOverlay } from 'react-aria-components'
"use client"
import { AnimatePresence, motion } from "motion/react"
import { useEffect, useState } from "react"
import { Dialog, Modal, ModalOverlay } from "react-aria-components"
import usePopStateHandler from '@scandic-hotels/common/hooks/usePopStateHandler'
import usePopStateHandler from "@scandic-hotels/common/hooks/usePopStateHandler"
import FullView from './FullView'
import Gallery from './Gallery'
import FullView from "./FullView"
import Gallery from "./Gallery"
import styles from './lightbox.module.css'
import styles from "./lightbox.module.css"
export type LightboxImage = {
src: string
@@ -49,7 +49,7 @@ export default function Lightbox({
useEffect(() => {
if (isOpen) {
window.history.pushState(null, '', window.location.href)
window.history.pushState(null, "", window.location.href)
}
}, [isOpen])
@@ -81,7 +81,7 @@ export default function Lightbox({
className={`${styles.content} ${
isFullView ? styles.fullViewContent : styles.galleryContent
}`}
initial={{ opacity: 0, scale: 0.95, x: '-50%', y: '-50%' }}
initial={{ opacity: 0, scale: 0.95, x: "-50%", y: "-50%" }}
animate={{ opacity: 1, scale: 1 }}
exit={{ opacity: 0, scale: 0.95 }}
transition={{ duration: 0.2 }}