File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ async def create_form_submission(
168168
169169 # Process the form data into structured tables
170170 processor = IntakeFormProcessor (db )
171- user_data = processor .process_form_submission (user_id = str (current_user .id ), form_data = submission .answers )
171+ processor .process_form_submission (user_id = str (current_user .id ), form_data = submission .answers )
172172
173173 # Commit everything together
174174 db .commit ()
Original file line number Diff line number Diff line change @@ -36,8 +36,7 @@ baseAPIClient.interceptors.request.use(async (config: InternalAxiosRequestConfig
3636 newConfig . headers . Authorization = `Bearer ${ idToken } ` ;
3737 }
3838 }
39- } catch {
40- }
39+ } catch { }
4140
4241 // if access token in header has expired, do a refresh
4342 const authHeaderParts = config . headers . Authorization ?. toString ( ) . split ( ' ' ) ;
Original file line number Diff line number Diff line change @@ -103,7 +103,10 @@ export default function VolunteerIntakePage() {
103103 await baseAPIClient . post ( '/intake/submissions' , { answers : updated } ) ;
104104 } catch ( error : any ) {
105105 // eslint-disable-next-line no-console
106- console . error ( '[INTAKE][SUBMIT][ERROR] Volunteer submission failed' , error ?. response ?. data || error ) ;
106+ console . error (
107+ '[INTAKE][SUBMIT][ERROR] Volunteer submission failed' ,
108+ error ?. response ?. data || error ,
109+ ) ;
107110 return ; // Do not advance on failure
108111 } finally {
109112 setSubmitting ( false ) ;
You can’t perform that action at this time.
0 commit comments