[#77] added complex ui for repetition, fixed broken tests due to new feature

This commit is contained in:
Camille Moussu
2025-09-02 18:14:55 +02:00
parent b6f55da506
commit ee01e1d027
14 changed files with 344 additions and 90 deletions
+1 -2
View File
@@ -74,7 +74,7 @@ export function Menubar() {
>
<div className="app-grid">
{applist.map((prop: AppIconProps) => (
<AppIcon prop={prop} />
<AppIcon key={prop.name} prop={prop} />
))}
</div>
</Popover>
@@ -96,7 +96,6 @@ export function MainTitle() {
function AppIcon({ prop }: { prop: AppIconProps }) {
return (
<a
key={prop.name}
href={prop.link}
target="_blank"
style={{ textDecoration: "none", color: "inherit" }}