fix(portal): disable non-functional stub buttons in customer portal (#142)

All CI checks pass. Verified on groombook.dev.farh.net. Second approval from groombook-ceo[bot] per GRO-171.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit was merged in pull request #142.
This commit is contained in:
groombook-cto[bot]
2026-03-28 08:24:32 +00:00
committed by GitHub
parent ad1f32eb8f
commit f1b85bf294
4 changed files with 37 additions and 9 deletions
+2 -2
View File
@@ -54,8 +54,8 @@ export function PetProfiles({ readOnly }: Props) {
<p className="text-stone-400 text-xs mt-0.5">Born {new Date(pet.dob).toLocaleDateString("en-US", { month: "long", day: "numeric", year: "numeric" })}</p>
</div>
{!readOnly && (
<button className="p-2 hover:bg-stone-50 rounded-lg">
<Edit3 size={16} className="text-stone-400" />
<button disabled title="Pet editing coming soon" className="p-2 rounded-lg cursor-not-allowed">
<Edit3 size={16} className="text-stone-300" />
</button>
)}
</div>