chore: frontend formatting

This commit is contained in:
Timothy J. Baek 2024-03-31 01:59:10 -07:00
parent d630485051
commit 43832d165f

View file

@ -19,12 +19,10 @@ const config = {
}, },
onwarn: (warning, handler) => { onwarn: (warning, handler) => {
const { code, _ } = warning; const { code, _ } = warning;
if (code === "css-unused-selector") if (code === 'css-unused-selector') return;
return;
handler(warning); handler(warning);
}, }
}; };
export default config; export default config;