feat: hide Marktsignale tab on Inserate detail drawer — direct listings have no market signal data

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Sutter
2026-05-24 23:14:29 +02:00
parent e597e81ff5
commit 81d66d24a9
+1 -1
View File
@@ -423,7 +423,7 @@ export default function MyListings() {
slotProps={{ paper: { sx: { width: { xs: '100%', sm: 560 } } } }}
>
{detailId && (
<PropertyDetailView propertyId={detailId} onClose={() => setDetailId(null)} hideTabs={['Matchability']} />
<PropertyDetailView propertyId={detailId} onClose={() => setDetailId(null)} hideTabs={['Matchability', 'Marktsignale']} />
)}
</Drawer>