Skip to content

Commit 6182efc

Browse files
chore(appSettings): format
1 parent 10d2dbd commit 6182efc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/settings/appSettings.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default function otherSettings() {
7979
},
8080
{
8181
key: "cleanInstallState",
82-
text: strings.cleanInstallState
82+
text: strings.cleanInstallState,
8383
},
8484
{
8585
key: "keyboardMode",
@@ -254,20 +254,20 @@ export default function otherSettings() {
254254

255255
const fs = fsOperation(INSTALL_STATE_STORAGE);
256256

257-
if(!(await fs.exists())) {
258-
toast(strings["no such file or directory"])
257+
if (!(await fs.exists())) {
258+
toast(strings["no such file or directory"]);
259259
break;
260260
}
261261

262-
loader.create("loading...")
262+
loader.create("loading...");
263263

264264
try {
265-
await fs.delete()
265+
await fs.delete();
266266
loader.destroy();
267-
toast(strings["success"])
267+
toast(strings["success"]);
268268
} catch (error) {
269269
helpers.error(error);
270-
loader.destroy()
270+
loader.destroy();
271271
}
272272
}
273273

0 commit comments

Comments
 (0)