You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a developer I want to show users the currency name instead of just currency code so that they can select it easier.
sample schema:
type Currency {
available_currency: [ CurrencyOutput ]
}
type CurrencyOutput {
value: String
title: String
symbol: String
}