feat: shows session expiry datetime instead of just date (#313)
Co-authored-by: Gancho Radkov <ganchoradkov@gmail.com>
This commit is contained in:
parent
5e09e9deb1
commit
57e476edd9
@ -138,12 +138,16 @@ export default function SessionPage() {
|
||||
|
||||
<Row justify="space-between">
|
||||
<Text h5>Expiry</Text>
|
||||
<Text css={{ color: '$gray400' }}>{expiryDate.toDateString()}</Text>
|
||||
<Text css={{ color: '$gray400' }}>
|
||||
{expiryDate.toDateString()} - {expiryDate.toLocaleTimeString()}
|
||||
</Text>
|
||||
</Row>
|
||||
|
||||
<Row justify="space-between">
|
||||
<Text h5>Last Updated</Text>
|
||||
<Text css={{ color: '$gray400' }}>{updated.toDateString()}</Text>
|
||||
<Text css={{ color: '$gray400' }}>
|
||||
{updated.toDateString()} - {updated.toLocaleTimeString()}
|
||||
</Text>
|
||||
</Row>
|
||||
|
||||
<Row css={{ marginTop: '$10' }}>
|
||||
|
Loading…
Reference in New Issue
Block a user