Skip to content

Commit

Permalink
Convert a let assignment to const… [#905]
Browse files Browse the repository at this point in the history
…to make the linter happy
  • Loading branch information
genehack committed Jun 7, 2024
1 parent 3719d88 commit 5cf4235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static-site/src/components/ListResources/useDataFetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function partitionByPathogen(pathVersions: PathVersions, pathPrefix: string, ver

const nameParts = name.split('/');
// split() will always return at least 1 string
let groupName = nameParts[0]!;
const groupName = nameParts[0]!;

const resourceDetails: Resource = {
name,
Expand Down

0 comments on commit 5cf4235

Please sign in to comment.