File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/pages/Home/components/ShelterListItem Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,9 @@ const ShelterListItem = (props: IShelterListItemProps) => {
40
40
} ;
41
41
} , [ ] ) ;
42
42
43
- const updatedAtDate = data . updatedAt ? format ( data . updatedAt , 'dd/MM/yyyy HH:mm' ) : "(sem informação)" ;
43
+ const updatedAtDate = data . updatedAt
44
+ ? format ( data . updatedAt , 'dd/MM/yyyy HH:mm' )
45
+ : '(sem informação)' ;
44
46
45
47
return (
46
48
< Link to = { `/abrigo/${ data . id } ` } target = "_blank" >
@@ -83,7 +85,7 @@ const ShelterListItem = (props: IShelterListItemProps) => {
83
85
</ >
84
86
) }
85
87
< small className = "text-sm md:text-md font-light text-muted-foreground mt-2" >
86
- Atualizado em { updatedAtDate }
88
+ Atualizado em { updatedAtDate }
87
89
</ small >
88
90
</ div >
89
91
< h6 className = { cn ( 'font-semibold text-md' , availabilityClassName ) } >
@@ -113,7 +115,6 @@ const ShelterListItem = (props: IShelterListItemProps) => {
113
115
Atualizado em { format ( data . updatedAt , 'dd/MM/yyyy HH:mm' ) }
114
116
</ small >
115
117
) }
116
- </ div >
117
118
</ Link >
118
119
) ;
119
120
} ;
You can’t perform that action at this time.
0 commit comments