Skip to content

Commit bcce3c0

Browse files
committed
Change let to const - was changed accidentally in rust-lang#1860
rust-lang#1860
1 parent c552c7f commit bcce3c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/frontend/src/pages/compare/page.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ const selector = loadSelectorFromUrl(urlParams);
7171
7272
const data: Ref<CompareResponse | null> = ref(null);
7373
await loadCompareData(selector, loading);
74-
let info = await loadBenchmarkInfo();
74+
const info = await loadBenchmarkInfo();
7575
</script>
7676

7777
<template>

0 commit comments

Comments
 (0)