accounts/stores: added useAccts
All checks were successful
/ depoly (push) Successful in 1m15s

This commit is contained in:
thislight 2024-07-14 21:36:41 +08:00
parent a0432af982
commit e882a8c0e8
No known key found for this signature in database
GPG key ID: A50F9451AC56A63E
2 changed files with 19 additions and 4 deletions

View file

@ -8,7 +8,7 @@ import {
untrack,
onMount,
} from "solid-js";
import { $accounts } from "../accounts/stores";
import { $accounts, useAccts } from "../accounts/stores";
import { useDocumentTitle } from "../utils";
import { useStore } from "@nanostores/solid";
import { useMastoClientFor } from "../masto/clients";
@ -152,7 +152,7 @@ const TimelinePanel: Component<{
const Home: Component = () => {
let panelList: HTMLDivElement;
useDocumentTitle("Timelines");
const accounts = useStore($accounts);
const accounts = useAccts();
const now = createTimeSource();
const client = useMastoClientFor(() => accounts()[0]);