added duplicate shot
Deploy / deploy (push) Successful in 2m28s

This commit is contained in:
twotalesanimation
2026-05-20 18:20:45 +02:00
parent c801d929af
commit 05475a6c19
4 changed files with 164 additions and 3 deletions
@@ -154,7 +154,7 @@ export function ProjectTabsClient({
) : (
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-3">
{shots.map((shot) => (
<ShotCard key={shot.id} shot={shot} projectId={projectId} />
<ShotCard key={shot.id} shot={shot} projectId={projectId} canManage={canManage} />
))}
</div>
)}