fix: missing key prop

This commit is contained in:
Marc Seitz
2025-02-24 14:04:45 +01:00
parent 21792bfab7
commit fb6069ce32
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -48,6 +48,7 @@ next-env.d.ts
# Internal scripts
pages/api/scripts
scripts/
# marketing emails
components/emails/marketing

View File

@@ -191,7 +191,7 @@ export function TimeRangeSelect({
</Button>
);
} else {
return <UpgradeButton />;
return <UpgradeButton key={range.value} />;
}
})}
</div>