Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions src/routes/join/students/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
import RoleInfo from "$lib/components/RoleInfo.svelte";
import Row from "$lib/components/Row.svelte";
import Section from "$lib/components/Section.svelte";
import Step from "$lib/components/Step.svelte";

Check warning on line 8 in src/routes/join/students/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

'Step' is defined but never used

export let data;

const iconMap: Record<string, IconType> = {

Check warning on line 12 in src/routes/join/students/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

'iconMap' is assigned a value but never used
Calendar: "calendar",
Form: "edit",
Interview: "conversation",
Expand Down Expand Up @@ -39,16 +39,12 @@

<Section color="var(--gray-lighter)" padding="40px">
<h2 id="process">Application Process</h2>
<p>{@html data.info.applicationBlurb}</p>
<div id="process-steps">
{#each data.applicationSteps as step}
<Step icon={iconMap[step.icon]}>
<span slot="name">{step.name}</span>
<span slot="date">{step.date ?? ""}</span>
<span slot="description">{@html step.description}</span>
</Step>
{/each}
</div>
<p>
Submit your application by 11:59 PM CDT on Sunday, August 31st! The
application can be found here: <a href="https://h4i.app/ly"
>https://h4i.app/ly</a
>
</p>
</Section>

{#if data.faqs.length > 0}
Expand Down Expand Up @@ -89,7 +85,7 @@
margin: 0 auto;
}

#process-steps {

Check warning on line 88 in src/routes/join/students/+page.svelte

View workflow job for this annotation

GitHub Actions / Lint

Unused CSS selector "#process-steps"
margin-top: 40px;
}

Expand Down