Minor fix

This commit is contained in:
Senthamil Sindhu
2024-06-27 09:49:00 -07:00
parent eb7c737066
commit 805d72c55b
2 changed files with 2 additions and 2 deletions

View File

@@ -49,7 +49,7 @@ export interface DataPlaneRbacState {
type DataPlaneRbacStore = UseStore<Partial<DataPlaneRbacState>>;
export const useDataPlaneRbac: DataPlaneRbacStore = create((set) => ({
export const useDataPlaneRbac: DataPlaneRbacStore = create(() => ({
dataPlaneRbacEnabled: false,
}));