From 419f9b75a73b4bf1f119a8325ad81be7f4580c82 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Mon, 21 Dec 2020 14:35:51 +0000 Subject: [PATCH] inverted title --- websrc/components/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websrc/components/App.tsx b/websrc/components/App.tsx index 0b62c59..6babfc8 100644 --- a/websrc/components/App.tsx +++ b/websrc/components/App.tsx @@ -90,7 +90,7 @@ class App extends Component<{}, AppState> { <> Rustico - - {String(this.state.active_pair.base) + "/" + String(this.state.active_pair.quote)} {String(this.state.current_price.toLocaleString())} + - {String(this.state.current_price.toLocaleString())} {String(this.state.active_pair.base) + "/" + String(this.state.active_pair.quote)}