diff --git a/frontend/src/components/sidebar/PhotoInfoPanel.tsx b/frontend/src/components/sidebar/PhotoInfoPanel.tsx
index d1e4119..00bdd53 100644
--- a/frontend/src/components/sidebar/PhotoInfoPanel.tsx
+++ b/frontend/src/components/sidebar/PhotoInfoPanel.tsx
@@ -471,6 +471,25 @@ export function PhotoInfoPanel({ photoId, darkTheme = false }: PhotoInfoPanelPro
{/* Read-only metadata sections */}
+ toggleSection('tags')}
+ >
+ attachExistingTagMutation.mutate(id)}
+ onCreateAndAttach={(name) => {
+ addTagMutation.mutate(name)
+ setTagInput('')
+ }}
+ onRemove={(id) => removeTagMutation.mutate(id)}
+ />
+
+
- toggleSection('tags')}
- >
- attachExistingTagMutation.mutate(id)}
- onCreateAndAttach={(name) => {
- addTagMutation.mutate(name)
- setTagInput('')
- }}
- onRemove={(id) => removeTagMutation.mutate(id)}
- />
-
)