This commit is contained in:
Dan Abramov
2024-11-02 01:18:29 +00:00
parent 0032aa1620
commit dcf72ae381
+1 -1
View File
@@ -19,7 +19,7 @@ const LightboxContext = React.createContext<{
})
const LightboxControlContext = React.createContext<{
openLightbox: (lightbox: Lightbox) => void
openLightbox: (lightbox: Omit<Lightbox, 'id'>) => void
closeLightbox: () => boolean
}>({
openLightbox: () => {},