Skip to content

Commit faeb89d

Browse files
committed
fix(prefs): remove debug log
1 parent e92d6ab commit faeb89d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

preferences/src/App.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@ function App() {
256256
useEffect(() => {
257257
invoke("get_system_fonts").then((value) => {
258258
const fonts = value as FontFamilyName[];
259-
console.log(fonts);
260259
setSystemFonts(fonts);
261260
});
262261
}, []);
@@ -286,7 +285,6 @@ function App() {
286285
const displayValue = parseInt(data.displayValue || fallback.toString());
287286
const value =
288287
data.value || (Number.isNaN(displayValue) ? fallback : displayValue);
289-
console.log(data);
290288
setConfig({
291289
...config,
292290
[name]: value,

0 commit comments

Comments
 (0)