refactor: cleanup warnings
All checks were successful
create archive with lfs / tag (push) Successful in 5s

This commit is contained in:
dusk 2025-02-22 13:01:47 +03:00
parent 62fb94c311
commit b4eadbe13a
Signed by: dusk
SSH Key Fingerprint: SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw
5 changed files with 5 additions and 12 deletions

View File

@ -1,5 +1,5 @@
import { env } from '$env/dynamic/private'
import { Bot, Post } from "@skyware/bot";
import { Bot, type Post } from "@skyware/bot";
import { get, writable } from 'svelte/store'
const bskyClient = writable<null | Bot>(null)

View File

@ -1,7 +1,6 @@
<script lang="ts">
import { PUBLIC_BASE_URL } from '$env/static/public';
import Note from '../components/note.svelte';
import Tooltip from '../components/tooltip.svelte';
import Window from '../components/window.svelte';
import LatestStuff from './lateststuff.md';

View File

@ -2,7 +2,7 @@
import { PUBLIC_BASE_URL } from '$env/static/public';
import Window from '../../components/window.svelte';
import '../../styles/app.css';
import { page } from '$app/stores';
import { page } from '$app/state';
interface Props {
title: any;
@ -37,7 +37,7 @@
<Window title="metadata" sticky>
<div class="prose prose-ralsei">
<ul>
<link class="u-url" href="{PUBLIC_BASE_URL}{$page.url.pathname}" />
<link class="u-url" href="{PUBLIC_BASE_URL}{page.url.pathname}" />
<li>author: <a rel="author" class="p-author h-card" href={PUBLIC_BASE_URL}>dusk</a></li>
<li>published on: <time class="dt-published" datetime="{date} 00:00:00">{date}</time></li>
<li class="max-w-80 text-wrap">

View File

@ -9,12 +9,6 @@ excerpt = "photos from my trip to japan"
export let data
</script>
<style>
picture {
margin: 0 !important;
}
</style>
## 1-16 / 09 / 2024
photos i took while on a japan trip
@ -26,6 +20,6 @@ fixed!!!! i also added a few images because im dumb and forgot
<div class="grid gap-0.5 auto-rows-min md:grid-cols-4">
{#each data.images as image}
<a class="!animate-none" href={image.og}><img loading="lazy" width={480} height={480} src={image.thumb} class="w-full h-full object-cover [image-rendering:high-quality_!important]"/></a>
<a class="!animate-none" href={image.og}><img loading="lazy" width={480} height={480} src={image.thumb} alt="from japan trip" class="w-full h-full object-cover [image-rendering:high-quality_!important]"/></a>
{/each}
</div>

View File

@ -1,4 +1,4 @@
import { getLastPosts, getUserPosts } from '$lib/bluesky.js';
import { getLastPosts } from '$lib/bluesky.js';
import { noteFromBskyPost } from '../../components/note.svelte';
export const load = async ({ }) => {