Format files using prettier

This commit is contained in:
ItsVipra 2023-05-27 17:41:54 +00:00 committed by github-actions[bot]
parent 6313b923d0
commit e1a6517b9f
2 changed files with 4 additions and 2 deletions

View file

@ -44,7 +44,7 @@ input {
padding: 1em;
border-top: 1px dashed var(--border);
display: flex;
gap: .5em;
gap: 0.5em;
align-items: baseline;
justify-content: space-between;
}

View file

@ -20,4 +20,6 @@ function restoreOptions() {
document.addEventListener("DOMContentLoaded", restoreOptions);
document.querySelector("form").addEventListener("submit", saveOptions);
document.querySelector("#resetbutton").addEventListener("click", async () => {await browser.storage.local.clear()})
document.querySelector("#resetbutton").addEventListener("click", async () => {
await browser.storage.local.clear();
});