Skip to content

Commit

Permalink
responding to a comment sad face
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleburgess2025 committed Aug 17, 2024
1 parent e18a1b5 commit c07b856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/hacker/HackerDash.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function HackerDash({ userApplicationStatus, setUserApplicationSt
const csvText = await res.text();
const schoolArr = csvText.split('\n').slice(1);

const schoolList = schoolArr.map((school: any) => {
const schoolList = schoolArr.map((school: string) => {
return { label: school, value: school };
});

Expand Down

0 comments on commit c07b856

Please sign in to comment.