Fix missing key React error in quick access bar (#4300)

# Description of Changes
React is currently throwing an error becasue of a missing key in V2.
This adds a key so it stops complaining.
This commit is contained in:
James Brunton 2025-08-27 10:57:54 +01:00 committed by GitHub
parent 00f0194b32
commit 0002043266
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -193,7 +193,7 @@ const QuickAccessBar = forwardRef<HTMLDivElement>(({
{/* {buttonConfigs
.filter(config => config.id === 'config')
.map(config => (
<div className="flex flex-col items-center gap-1">
<div key={config.id} className="flex flex-col items-center gap-1">
<ActionIcon
size={config.size || 'lg'}
variant="subtle"