Removed the build problem

This commit is contained in:
Tiago Ribeiro
2023-08-22 23:25:17 +01:00
parent 14a719b8b5
commit c91264e455
2 changed files with 9 additions and 9 deletions

View File

@@ -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;
};