Skip to content

Commit

Permalink
change type
Browse files Browse the repository at this point in the history
  • Loading branch information
owlester12 committed Sep 27, 2024
1 parent ab07513 commit 4daa2d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/pages/apply/[[...slug]].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import ApplicationsPage from '~/components/Applications'
import SubmissionsPage from '~/components/Submissions'
import { BrowserTabView } from '~/components/TabView'
import { APPLY_ROUTE, BG_GRADIENT, WHITE } from '~/constants'
import { ApplicationSubmission } from '~/types'
import { Application, ApplicationSubmission } from '~/types'

function ApplyDashboard({
whartonapplications,
Expand All @@ -24,7 +24,7 @@ function ApplyDashboard({
name: 'applications',
label: 'Applications',
content: () => (
<ApplicationsPage whartonapplications={whartonapplications} />
<ApplicationsPage whartonApplications={whartonapplications} />
),
},
{
Expand Down Expand Up @@ -56,7 +56,7 @@ function ApplyDashboard({
}

type BulkResp = {
whartonapplications: any
whartonapplications: Application[]
submissions: Array<ApplicationSubmission>
}

Expand Down

0 comments on commit 4daa2d4

Please sign in to comment.