From 47ef44b6ca765c82933431a625038b4fc956a2d1 Mon Sep 17 00:00:00 2001 From: tradewind886 <38669586+tradewind886@users.noreply.github.com> Date: Fri, 25 Mar 2022 00:27:43 +0800 Subject: [PATCH] Update getFlags.js yadio.io has now added TWD to the ticker, submitting change to getflags alongside currencies.json --- frontend/src/components/getFlags.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/getFlags.js b/frontend/src/components/getFlags.js index bcfd6382..205587e3 100644 --- a/frontend/src/components/getFlags.js +++ b/frontend/src/components/getFlags.js @@ -62,7 +62,8 @@ export default function getFlags(code){ if(code == 'TTD') return 'πŸ‡ΉπŸ‡Ή'; if(code == 'VND') return 'πŸ‡»πŸ‡³'; if(code == 'XOF') return 'πŸ‡ΈπŸ‡³'; + if(code == 'TWD') return 'πŸ‡ΉπŸ‡Ό'; if(code == 'XAU') return '🟨'; if(code == 'BTC') return ; return '🏳'; -}; \ No newline at end of file +};