5df716bf1c
* WIP create modal * babababa * create dialog looks ok * FE largely there * workss * cleanup * fixed up test plumbing to avoid deadlocks and simplify GQL calls * test fix * added all tests * CI fix
8 lines
246 B
TypeScript
8 lines
246 B
TypeScript
export const useIsMultiregionEnabled = () => {
|
|
const {
|
|
public: { FF_WORKSPACES_MODULE_ENABLED, FF_WORKSPACES_MULTI_REGION_ENABLED }
|
|
} = useRuntimeConfig()
|
|
|
|
return !!(FF_WORKSPACES_MODULE_ENABLED && FF_WORKSPACES_MULTI_REGION_ENABLED)
|
|
}
|