Skip to content

Commit

Permalink
Fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
ddxv committed Oct 25, 2023
1 parent d289c60 commit 08819c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
2 changes: 1 addition & 1 deletion frontend/src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
border=""
class="bg-surface-100-800-token w-full"
>
<TabAnchor href="https://ads.jamesoclaire.com">
<TabAnchor href="https://ads.jamesoclaire.com/dash/ads">
<span>Ads.txt Dash</span>
</TabAnchor>
<TabAnchor href="https://jamesoclaire.com">
Expand Down
16 changes: 1 addition & 15 deletions frontend/src/routes/collections/[collection]/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import type { AppFullDetail, Categories, Collections } from '../../../types';
import type { AppFullDetail, Collections } from '../../../types';
/** @type {import('../[collection]/$types').PageData} */
export let data: Collections;
import AppDetails from '$lib/RatingInstalls.svelte';
Expand All @@ -12,8 +12,6 @@
import { myStoreSelection } from '../../../stores';
import { myCategorySelection } from '../../../stores';
import { myCategoryMap } from '../../../stores';
</script>

<h1 class="h1 p-4">Welcome!</h1>
Expand All @@ -24,18 +22,6 @@
{#each Object.entries(data.myapps.categories) as [_key, cat]}
{#if cat.key == $myCategorySelection}
<div class="card p-2">
<!-- <h1 class="h1 p-4">
Store: {cat[$myStoreSelection].title} Category:
{#if $myCategoryMap}
{#each Object.entries($myCategoryMap.mycats.categories) as [_key, catMap]}
{#if catMap.id == cat.key}
{catMap.name}
{/if}
{/each}
{:else}
cat
{/if}
</h1> -->
<section class="grid grid-cols-1 md:grid-cols-4 gap-4">
{#each cat[$myStoreSelection].apps as app}
<a
Expand Down

0 comments on commit 08819c1

Please sign in to comment.