Change: move custom.css linking to head to avoid FOUC (#2916)

---------

Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
Benedek Kozma 2024-02-16 00:52:59 +01:00 committed by GitHub
parent 4dca4cc892
commit a251c34059
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 20 deletions

View file

@ -1,10 +0,0 @@
import useSWR from "swr";
export default function FileContent({ path, loadingValue, errorValue, emptyValue = "" }) {
const fetcher = (url) => fetch(url).then((res) => res.text());
const { data, error, isLoading } = useSWR(`/api/config/${path}`, fetcher);
if (error) return errorValue;
if (isLoading) return loadingValue;
return data || emptyValue;
}