Skip to content

Commit 73c3688

Browse files
committed
lint
1 parent 5d36e43 commit 73c3688

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

frontend/src/pages/participant/intake/index.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,14 @@ export default function ParticipantIntakePage() {
227227
return (
228228
<ProtectedPage allowedRoles={[UserRole.PARTICIPANT, UserRole.ADMIN]}>
229229
<FormStatusGuard allowedStatuses={[FormStatus.INTAKE_TODO]}>
230-
<Flex minH="100vh" bg={COLORS.lightGray} justify="center" py={12} overflow="visible" pb={hasDropdownOpen ? '50vh' : 12}>
230+
<Flex
231+
minH="100vh"
232+
bg={COLORS.lightGray}
233+
justify="center"
234+
py={12}
235+
overflow="visible"
236+
pb={hasDropdownOpen ? '50vh' : 12}
237+
>
231238
<Box
232239
w="full"
233240
maxW="1200px"

frontend/src/pages/volunteer/intake/index.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,14 @@ export default function VolunteerIntakePage() {
236236
return (
237237
<ProtectedPage allowedRoles={[UserRole.VOLUNTEER, UserRole.ADMIN]}>
238238
<FormStatusGuard allowedStatuses={[FormStatus.INTAKE_TODO]}>
239-
<Flex minH="100vh" bg={COLORS.lightGray} justify="center" py={12} overflow="visible" pb={hasDropdownOpen ? '30vh' : 12}>
239+
<Flex
240+
minH="100vh"
241+
bg={COLORS.lightGray}
242+
justify="center"
243+
py={12}
244+
overflow="visible"
245+
pb={hasDropdownOpen ? '30vh' : 12}
246+
>
240247
<Box
241248
w="full"
242249
maxW="1200px"

0 commit comments

Comments
 (0)