CHORE: Cleaning up code before merge

This commit is contained in:
Luke Else 2025-05-23 22:32:58 +01:00
parent a46ac458dc
commit 25f3db52ec
Signed by: luke-else
GPG Key ID: B44FAF5CD3964A56
2 changed files with 3 additions and 6 deletions

View File

@ -4,7 +4,8 @@
<div class="w-full mt-3"> <div class="w-full mt-3">
<div class="flex justify-between mb-1"> <div class="flex justify-between mb-1">
<span class="text-sm font-medium text-gray-400">{value}%</span> <span class="text-sm font-medium">Competency Level</span>
<span class="text-sm font-medium">{value}%</span>
</div> </div>
<div class="w-full bg-gray-800 rounded-full h-5"> <div class="w-full bg-gray-800 rounded-full h-5">
<div <div

View File

@ -1,14 +1,10 @@
<script lang="ts"> <script lang="ts">
import { loadRepos, repos } from '$lib/stores'; import { loadRepos, repos } from '$lib/stores'; import { onMount } from 'svelte';
import { onMount } from 'svelte';
import { toasts } from 'svelte-toasts';
import { timeSince, checkImage, IMAGE_URL_SUFFIX } from '$lib/api/git'; import { timeSince, checkImage, IMAGE_URL_SUFFIX } from '$lib/api/git';
import FlexGallery from '$lib/components/FlexGallery.svelte'; import FlexGallery from '$lib/components/FlexGallery.svelte';
import Card from '$lib/components/Cards/Card.svelte'; import Card from '$lib/components/Cards/Card.svelte';
import { onDestroy } from 'svelte';
let repoImages: Record<string, string | null> = {}; let repoImages: Record<string, string | null> = {};
// When repos load, check for images // When repos load, check for images