Add prettier formatting (#214)

* chore: add prettier

* chore: format codebase
This commit is contained in:
ennmichael
2023-02-07 21:04:50 +01:00
committed by GitHub
parent 015f799cf7
commit 5ad4971fc0
182 changed files with 8686 additions and 6861 deletions

View File

@ -4,9 +4,9 @@ import useThreadFeed from "Feed/ThreadFeed";
import { parseId } from "Util";
export default function EventPage() {
const params = useParams();
const id = parseId(params.id!);
const thread = useThreadFeed(id);
const params = useParams();
const id = parseId(params.id!);
const thread = useThreadFeed(id);
return <Thread notes={thread.notes} this={id} />;
}
return <Thread notes={thread.notes} this={id} />;
}