We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec6daee commit 3e143daCopy full SHA for 3e143da
src/pages/benchviz/Benchmark.tsx
@@ -117,7 +117,7 @@ export default function Benchmark() {
117
}
118
119
function decodeBenchmarkData(encodedData: string) {
120
- const results = JSON.parse(pako.inflate(btoa(encodedData)).toString());
+ const results = JSON.parse(pako.inflate(atob(encodedData)).toString());
121
122
const dataMaster = results.old as BenchmarkResult[];
123
const dataCommit = results.new as BenchmarkResult[];
0 commit comments