Removed the build problem
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
export const preventNavigation = (navDisabled: Boolean, focusMode: Boolean): Boolean => {
|
||||
if (navDisabled) return true;
|
||||
if(focusMode) return true;
|
||||
return false;
|
||||
}
|
||||
export const preventNavigation = (navDisabled: boolean, focusMode: boolean): boolean => {
|
||||
if (navDisabled) return true;
|
||||
if (focusMode) return true;
|
||||
return false;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user