Skip to content

Commit

Permalink
quick fix on unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaSaikali committed Dec 1, 2021
1 parent 84082fc commit e2ae772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/Labs.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
{#if !$response.loading && $response}
<div class="content-container">
<!-- GIVES ERROR: Error: {#each} only iterates over array-like objects. -->
{#each $response.data.dynamicRoutes.options as routes, i}
{#each $response.data.dynamicRoutes.options as routes}
<a href={'#/labs'}>
<ContentCard
title={routes.name}
Expand Down

0 comments on commit e2ae772

Please sign in to comment.