Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
Fix some typos
Sebastian Martinez committed 1 year ago
commit 900506bf4b2ccdc8998fa0916fc2718636c237bb
parent 5fb6b3e
4 files changed +4 -4
modified eslint.config.js
@@ -94,7 +94,7 @@ export default [
          "warn",
          { default: ["field", "signature", "constructor", "method"] },
        ],
-
        // Allow explict type annotations for additional clarity.
+
        // Allow explicit type annotations for additional clarity.
        "@typescript-eslint/no-inferrable-types": "off",
        "@typescript-eslint/no-invalid-void-type": ["warn"],
        // Disallow Unused Variables.
modified src/views/repos/Patch.svelte
@@ -108,7 +108,7 @@
      node: baseUrl,
      patch: patch.id,
    } as const;
-
    // For cleaner URLs, we omit the the revision part when we link to the
+
    // For cleaner URLs, we omit the revision part when we link to the
    // latest revision.
    const latestRevisionId = patch.revisions[patch.revisions.length - 1].id;
    const revision = latestRevisionId === revisionId ? undefined : revisionId;
modified tests/e2e/clipboard.spec.ts
@@ -21,7 +21,7 @@ test("copy to clipboard", async ({ page, browserName, context }) => {
  if (browserName === "chromium") {
    await context.grantPermissions(["clipboard-read", "clipboard-write"]);
  } else if (browserName === "webkit") {
-
    // We aren't able to programatically change the permissions in webkit.
+
    // We aren't able to programmatically change the permissions in webkit.
    test.skip();
  }

modified tests/e2e/theme.spec.ts
@@ -14,7 +14,7 @@ test("default theme", async ({ page }) => {
  }
});

-
test("theme persistance", async ({ page }) => {
+
test("theme persistence", async ({ page }) => {
  await page.goto(sourceBrowsingFixture);
  await expect(
    page.getByRole("banner").getByRole("link", { name: "source-browsing" }),