feat(directory) : open detail page on row click, drop inline address from drawers

This commit is contained in:
Matthieu
2026-06-22 13:46:05 +02:00
parent fb8cc790d7
commit 21eeb36766
5 changed files with 2 additions and 77 deletions
@@ -4,16 +4,10 @@ export type Client = {
name: string
email: string | null
phone: string | null
street: string | null
city: string | null
postalCode: string | null
}
export type ClientWrite = {
name: string
email: string | null
phone: string | null
street: string | null
city: string | null
postalCode: string | null
}
@@ -9,9 +9,6 @@ export type Prospect = {
company: string | null
email: string | null
phone: string | null
street: string | null
city: string | null
postalCode: string | null
status: ProspectStatus
source: string | null
notes: string | null
@@ -25,9 +22,6 @@ export type ProspectWrite = {
company: string | null
email: string | null
phone: string | null
street: string | null
city: string | null
postalCode: string | null
status: ProspectStatus
source: string | null
notes: string | null