accounts/stores: added useAccts

This commit is contained in:
thislight 2024-07-14 21:36:41 +08:00
parent 9f83b223c4
commit 8ae0768c42
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]);