0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-05-07 16:38:38 +00:00

Clear error in helpers?

This commit is contained in:
David Bolack
2026-03-28 15:01:28 -05:00
parent ca160d7d83
commit 8ad208600d
+1 -1
View File
@@ -138,7 +138,7 @@ const fetchThemeBundle = async (setError, setThemeBundle, renderer, theme)=>{
const themeBundle = res.body;
themeBundle.joinedStyles = themeBundle.styles.map((style)=>`<style>${style}</style>`).join('\n\n');
setThemeBundle(themeBundle);
setError(null);
if(setError) { setError(null); }
};
const debugTextMismatch = (clientTextRaw, serverTextRaw, label)=>{