Now using european date format

This commit is contained in:
Clément Le Bihan
2024-01-04 22:21:11 +01:00
parent 851ee7420f
commit 9f14061efd
+1 -1
View File
@@ -46,7 +46,7 @@ const HistoryRowComponent = (props: historyRowProps) => {
</View>
<Text>{props.query}</Text>
</View>
<Text>{props.timestamp.toLocaleDateString()}</Text>
<Text>{props.timestamp.toLocaleDateString(["fr-FR", "en-GB"])}</Text>
</View>
);
};