Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Commit

Permalink
fix: use main tag instead of div tag (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
suhaasya authored Apr 9, 2022
1 parent b785d28 commit 9398ad0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/routes/index.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@
<Filter tags={data.labels} />
</header>
{#if intersectedArray.length > 0}
<div class="mb-4 space-y-4">
<main class="mb-4 space-y-4">
{#each intersectedArray as node}
<IssueCard issue={node.node} />
{/each}
</div>
</main>
{:else}
<div class="text-center">Unfortuately there was no issue found</div>
<main class="text-center">Unfortuately there was no issue found</main>
{/if}

0 comments on commit 9398ad0

Please sign in to comment.