Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
me-liu committed Dec 3, 2024
1 parent 6ca059c commit 271f63c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/onboarding/review/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function Review() {

const submitData = async () => {
if (!generalInfo || !preferences) return;
await submitOnboardingData(generalInfo, preferences);
await submitOnboardingData(generalInfo, preferences, role);
};

return (
Expand Down
2 changes: 1 addition & 1 deletion utils/onboardingContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface Preferences {
grouping: string[];
}

interface Role {
export interface Role {
isHost: boolean;
isPerformer: boolean;
}
Expand Down

0 comments on commit 271f63c

Please sign in to comment.