We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 720a49d commit 3ad99ebCopy full SHA for 3ad99eb
1 file changed
src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementRequestForm.tsx
@@ -122,8 +122,8 @@ const ReimbursementRequestForm: React.FC<ReimbursementRequestFormProps> = ({
122
} = useAllProjects();
123
124
// checking the data here instead of using isError since function doesn't ever return an error
125
- const { data : userSecureSettings, isLoading: checkSecureSettingsIsLoading } = useCurrentUserSecureSettings();
126
-
+ const { data: userSecureSettings, isLoading: checkSecureSettingsIsLoading } = useCurrentUserSecureSettings();
+
127
// checks to make sure none of the secure settings fields are empty, indicating not properly set
128
const hasSecureSettingsSet = Object.values(userSecureSettings ?? {}).every((x) => x !== '') ? true : false;
129
0 commit comments