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 00b4c61 commit c76109aCopy full SHA for c76109a
src/index.ts
@@ -118,7 +118,8 @@ export const getGPUTier = async ({
118
119
// Remove version tag and check version is supported
120
const version = parseInt(
121
- (data.shift() as unknown as string).split('.')[0]
+ (data.shift() as unknown as string).split('.')[0],
122
+ 10
123
);
124
if (version < 4) {
125
throw new OutdatedBenchmarksError(
0 commit comments