diff --git a/frontend/pages/apply/[[...slug]].tsx b/frontend/pages/apply/[[...slug]].tsx index 85b3f4aa7..1d08e1627 100644 --- a/frontend/pages/apply/[[...slug]].tsx +++ b/frontend/pages/apply/[[...slug]].tsx @@ -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, @@ -24,7 +24,7 @@ function ApplyDashboard({ name: 'applications', label: 'Applications', content: () => ( - + ), }, { @@ -56,7 +56,7 @@ function ApplyDashboard({ } type BulkResp = { - whartonapplications: any + whartonapplications: Application[] submissions: Array }