Skip to content

Commit

Permalink
Docs/fix bluesky feed links (#3164)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugos68 authored Jan 25, 2025
1 parent b6cc705 commit 6eb8a11
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import type { PaginationProps } from './types.js';
import { useId } from '$lib/internal/use-id.js';
import {untrack} from "svelte";
import { untrack } from 'svelte';

let {
page = $bindable(1),
Expand Down Expand Up @@ -49,7 +49,7 @@
id: useId(),
page: page,
pageSize: pageSize,
count: zagProps.count ?? data.length,
count: zagProps.count ?? data.length
}),
{
context: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
{/each}
{:then posts}
{#each posts as post (post.cid)}
<a href={post.uri} target="_blank" class="block">
<a href="https://bsky.app/profile/{post.author.handle}/post/{post.uri.split('/').at(-1)}" target="_blank" class="block">
<article class="card preset-outlined-surface-200-800 hover:preset-tonal p-4 xl:p-10 space-y-4">
<header class="flex justify-between items-center">
<img
Expand Down

0 comments on commit 6eb8a11

Please sign in to comment.