We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e92d6ab commit faeb89dCopy full SHA for faeb89d
preferences/src/App.tsx
@@ -256,7 +256,6 @@ function App() {
256
useEffect(() => {
257
invoke("get_system_fonts").then((value) => {
258
const fonts = value as FontFamilyName[];
259
- console.log(fonts);
260
setSystemFonts(fonts);
261
});
262
}, []);
@@ -286,7 +285,6 @@ function App() {
286
285
const displayValue = parseInt(data.displayValue || fallback.toString());
287
const value =
288
data.value || (Number.isNaN(displayValue) ? fallback : displayValue);
289
- console.log(data);
290
setConfig({
291
...config,
292
[name]: value,
0 commit comments