We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2a7724 commit 26ddd3eCopy full SHA for 26ddd3e
2 files changed
src/programs/FileBrowser/FileBrowser.tsx
@@ -112,6 +112,7 @@ function MainContent({
112
openFSObject={openFSObject}
113
selected={selected === fsObject.path}
114
setSelected={setSelected}
115
+ key={fsObject.path}
116
/>
117
))}
118
</div>
src/programs/Settings/Settings.tsx
@@ -79,7 +79,7 @@ function SettingsPage({ sections }: SettingsPageProps) {
79
<div className="settings__page">
80
<div className="settings__page-sections">
81
{sections.map((section) => (
82
- <SettingsSection {...section} />
+ <SettingsSection {...section} key={section.title} />
83
84
85
0 commit comments