Skip to content

Commit

Permalink
refactor: Update profile page to pass limit data to forms
Browse files Browse the repository at this point in the history
  • Loading branch information
tawaks committed Oct 20, 2024
1 parent f4db616 commit 698db7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/profile/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<Card.Description>
The links visible on your profile. You can drag links around to modify the order
</Card.Description>
<LinkForm data={data.form} linksLength={data.links.length} />
<LinkForm data={data.form} linksLength={data.links.length} links = {data.links} />
</div>
</Card.Header>
<Card.Content>
Expand All @@ -82,7 +82,7 @@
<Card.Header>
<Card.Title>Tech Stack</Card.Title>
<Card.Description>You can drag skills around to modify the order</Card.Description>
<SkillsForm data={data.skillsForm} skillsLength={data.skills.length} />
<SkillsForm data={data.skillsForm} skillsLength={data.skills.length} skills = {data.skills} />
</Card.Header>
<Card.Content class="grid gap-8">
<UserSkills skills={data.skills} />
Expand Down

0 comments on commit 698db7a

Please sign in to comment.