umfangreiche Behebung von TS-Fehlern. "npm run types" läuft nun ohne Fehler durch

This commit is contained in:
Codex Agent
2025-11-21 07:45:21 +01:00
parent b6f6cdeffe
commit 07fe049b8a
25 changed files with 74 additions and 63 deletions

View File

@@ -30,7 +30,7 @@ const INITIAL_STATE: GalleryState = {
const GALLERY_PAGE_SIZE = 30;
export default function PublicGalleryPage(): JSX.Element | null {
export default function PublicGalleryPage(): React.ReactElement | null {
const { token } = useParams<{ token: string }>();
const { t } = useTranslation();
const [state, setState] = useState<GalleryState>(INITIAL_STATE);