frontend: Reset current theme when going to tag page

This commit is contained in:
nemunaire 2025-03-29 12:17:03 +01:00
parent eaca60e5e0
commit f05664e2e3

View file

@ -1,4 +1,8 @@
import { set_current_theme } from '$lib/stores/themes';
export async function load({ params }) {
set_current_theme.set(null);
return {
tag: params.tag,
};