Skip to content

Commit 768e08a

Browse files
Chore(deps-dev): Bump @biomejs/biome from 2.4.4 to 2.4.5 in the biome group (#1236)
* Chore(deps-dev): Bump @biomejs/biome in the biome group Bumps the biome group with 1 update: [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome). Updates `@biomejs/biome` from 2.4.4 to 2.4.5 - [Release notes](https://github.com/biomejs/biome/releases) - [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md) - [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.5/packages/@biomejs/biome) --- updated-dependencies: - dependency-name: "@biomejs/biome" dependency-version: 2.4.5 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: biome ... Signed-off-by: dependabot[bot] <support@github.com> * fix: update key prop in process mapping to use unique process ID --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: shm11C3 <m11c3.sh@gmail.com>
1 parent c8bf947 commit 768e08a

File tree

5 files changed

+42
-42
lines changed

5 files changed

+42
-42
lines changed

package-lock.json

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"gen:licenses:tmp": "node --experimental-strip-types .github/scripts/generate-licenses.ts tmp"
2121
},
2222
"devDependencies": {
23-
"@biomejs/biome": "2.4.4",
23+
"@biomejs/biome": "2.4.5",
2424
"@tailwindcss/vite": "^4.2.1",
2525
"@tauri-apps/cli": "^2.10.0",
2626
"@testing-library/dom": "^10.4.1",

src/features/hardware/dashboard/components/DashboardItems.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const GPUInfo = () => {
128128
hardwareInfo.gpus.map((gpu, index, arr) => (
129129
<div
130130
className={index !== 0 ? "py-3" : arr.length > 1 ? "pb-3" : ""}
131-
key={`${gpu.name}${index}`}
131+
key={gpu.id}
132132
>
133133
{(() => {
134134
const hasMemorySize = gpu.memorySize !== "N/A";

src/features/hardware/insights/process/table/ProcessTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,9 @@ const TableBody = memo(({ processes }: { processes: ProcessStat[] }) => {
216216

217217
return (
218218
<tbody>
219-
{processes.map((process, i) => {
219+
{processes.map((process) => {
220220
return (
221-
<tr key={`${process.pid}-${i}`} className="border-gray-700 border-b">
221+
<tr key={process.pid} className="border-gray-700 border-b">
222222
<td className="py-2">{process.pid}</td>
223223
<td className="py-2">{process.process_name}</td>
224224
<td className="py-2">

src/features/hardware/insights/snapshot/components/ProcessHistoryTable.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ const TableBody = memo(({ processes }: { processes: ProcessStat[] }) => {
229229

230230
return (
231231
<tbody>
232-
{processes.map((process, i) => {
232+
{processes.map((process) => {
233233
return (
234-
<tr key={`${process.pid}-${i}`} className="border-gray-700 border-b">
234+
<tr key={process.pid} className="border-gray-700 border-b">
235235
<td className="py-2">{process.pid}</td>
236236
<td className="max-w-48 truncate py-2" title={process.process_name}>
237237
{process.process_name}

0 commit comments

Comments
 (0)