Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
Fix linter warnings
Merged rudolfs opened 3 months ago

Fixes svelte/no-reactive-reassign errors when running scripts/check.

It slipped through code review, regression from: https://app.radicle.xyz/nodes/seed.radicle.garden/rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5/patches/d77e0646b32cac18187a72bd5f36b501a08040ba https://github.com/radicle-dev/radicle-explorer/actions/runs/17741958964/job/50417893170

check check-visual check-unit-test check-http-client-unit-test check-radicle-httpd check-e2e check-build check-http 👉 Workflow runs 👉 Branch on GitHub

1 file changed +1 -1 fadd6146 eec96f51
modified src/views/nodes/ReposView.svelte
@@ -15,7 +15,7 @@

  let listState: "pinned" | "all" = "pinned";

-
  $: page = 0;
+
  let page = 0;
  $: perPage = listState === "pinned" ? stats.repos.total : 24;
  $: totalPages = Math.ceil(stats.repos.total / perPage);