diff --git a/frontend/src/components/locale-picker.ts b/frontend/src/components/locale-picker.ts
index 1c57f4c8..1563810a 100644
--- a/frontend/src/components/locale-picker.ts
+++ b/frontend/src/components/locale-picker.ts
@@ -6,7 +6,7 @@ import { allLocales } from "../__generated__/locale-codes";
import { getLocale, setLocaleFromUrl } from "../utils/localization";
import { localized } from "@lit/localize";
-type LocaleCode = typeof allLocales[number];
+type LocaleCode = (typeof allLocales)[number];
type LocaleNames = {
[L in LocaleCode]: string;
};
diff --git a/frontend/src/pages/accept-invite.ts b/frontend/src/pages/accept-invite.ts
index 6cc65870..88d89f18 100644
--- a/frontend/src/pages/accept-invite.ts
+++ b/frontend/src/pages/accept-invite.ts
@@ -148,13 +148,9 @@ export class AcceptInvite extends LiteElement {
}
try {
- await this.apiFetch(
- `/orgs/invite-accept/${this.token}`,
- this.authState,
- {
- method: "POST",
- }
- );
+ await this.apiFetch(`/orgs/invite-accept/${this.token}`, this.authState, {
+ method: "POST",
+ });
this.notify({
message: msg(str`You've joined ${this.inviteInfo.orgName}.`),
@@ -174,9 +170,7 @@ export class AcceptInvite extends LiteElement {
private onDecline() {
this.notify({
- message: msg(
- str`You've declined to join ${this.inviteInfo.orgName}.`
- ),
+ message: msg(str`You've declined to join ${this.inviteInfo.orgName}.`),
variant: "info",
icon: "info-circle",
});
diff --git a/frontend/src/pages/org/crawls-list.ts b/frontend/src/pages/org/crawls-list.ts
index 29690b31..6abe5530 100644
--- a/frontend/src/pages/org/crawls-list.ts
+++ b/frontend/src/pages/org/crawls-list.ts
@@ -210,23 +210,20 @@ export class CrawlsList extends LiteElement {
${msg("No crawls yet.")}