Ignore uninitialized context

This commit is contained in:
Eric Bailey
2024-03-05 12:39:44 -06:00
parent 076fa9dddd
commit baba077e37
+1
View File
@@ -3,5 +3,6 @@ import React from 'react'
import type {ContextType} from '#/components/Menu/types'
export const Context = React.createContext<ContextType>({
// @ts-ignore
control: null,
})