Skip to content

Commit 6ec93d9

Browse files
committed
fix linting
1 parent 70bbfee commit 6ec93d9

File tree

4 files changed

+26
-9
lines changed

4 files changed

+26
-9
lines changed

backend/app/models/User.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import uuid
22
from enum import Enum as PyEnum
33

4-
from sqlalchemy import Boolean, Column, Enum as SQLEnum, ForeignKey, Integer, String
4+
from sqlalchemy import Boolean, Column, ForeignKey, Integer, String
5+
from sqlalchemy import Enum as SQLEnum
56
from sqlalchemy.dialects.postgresql import UUID
67
from sqlalchemy.orm import relationship
78

frontend/src/pages/participant/dashboard.tsx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@ export default function ParticipantDashboardPage() {
88
<ProtectedPage allowedRoles={[UserRole.PARTICIPANT, UserRole.ADMIN]}>
99
<FormStatusGuard allowedStatuses={[FormStatus.COMPLETED]}>
1010
<Box minH="100vh" display="flex" alignItems="center" justifyContent="center" bg="gray.50">
11-
<VStack spacing={4} bg="white" p={12} borderRadius="lg" boxShadow="md" maxW="lg" textAlign="center">
11+
<VStack
12+
gap={4}
13+
bg="white"
14+
p={12}
15+
borderRadius="lg"
16+
boxShadow="md"
17+
maxW="lg"
18+
textAlign="center"
19+
>
1220
<Heading size="lg">Participant dashboard coming soon</Heading>
1321
<Text>
14-
Thanks for completing your forms. We&apos;re building the dashboard experience—stay tuned
15-
for upcoming program updates.
22+
Thanks for completing your forms. We&apos;re building the dashboard experience—stay
23+
tuned for upcoming program updates.
1624
</Text>
1725
</VStack>
1826
</Box>

frontend/src/pages/participant/ranking/thank-you.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ export default function ParticipantRankingThankYouPage() {
5252
textAlign="center"
5353
>
5454
We are reviewing which volunteers would best fit those preferences. You will receive
55-
an email from us in the next 1-2 business days with the next steps. If you would like
56-
to connect with a LLSC staff before then, please reach out to{' '}
55+
an email from us in the next 1-2 business days with the next steps. If you would
56+
like to connect with a LLSC staff before then, please reach out to{' '}
5757
<Text as="span" color={COLORS.teal} fontWeight={500}>
5858
5959
</Text>

frontend/src/pages/volunteer/dashboard.tsx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@ export default function VolunteerDashboardPage() {
88
<ProtectedPage allowedRoles={[UserRole.VOLUNTEER, UserRole.ADMIN]}>
99
<FormStatusGuard allowedStatuses={[FormStatus.COMPLETED]}>
1010
<Box minH="100vh" display="flex" alignItems="center" justifyContent="center" bg="gray.50">
11-
<VStack spacing={4} bg="white" p={12} borderRadius="lg" boxShadow="md" maxW="lg" textAlign="center">
11+
<VStack
12+
gap={4}
13+
bg="white"
14+
p={12}
15+
borderRadius="lg"
16+
boxShadow="md"
17+
maxW="lg"
18+
textAlign="center"
19+
>
1220
<Heading size="lg">Volunteer dashboard coming soon</Heading>
1321
<Text>
14-
You&apos;ve finished the application flow. Once the dashboard is ready, we&apos;ll guide you
15-
through next steps from here.
22+
You&apos;ve finished the application flow. Once the dashboard is ready, we&apos;ll
23+
guide you through next steps from here.
1624
</Text>
1725
</VStack>
1826
</Box>

0 commit comments

Comments
 (0)