Skip to content

Commit cc16b53

Browse files
author
n3kosempai
committed
[fix] solved performance problem in MyApps.tsx
1 parent c352b24 commit cc16b53

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

com.gatorand.klia-store.metainfo.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<binary>klia-store</binary>
1414
</provides>
1515
<releases>
16-
<release version="0.9.1" date="2025-10-18"/>
16+
<release version="0.9.2" date="2025-10-18"/>
1717
</releases>
1818
<content_rating type="oars-1.1"/>
1919
</component>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "klia-store",
33
"private": true,
4-
"version": "0.9.1",
4+
"version": "0.9.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src/pages/myApps/MyApps.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ export const MyApps = ({ onBack }: MyAppsProps) => {
170170
>
171171
{installedApps.map((app) => (
172172
<Card
173-
key={uuidv4()}
173+
key={app.appId}
174174
sx={{
175175
height: "100%",
176176
display: "flex",

0 commit comments

Comments
 (0)