diff --git a/new-lamassu-admin/src/pages/Locales/Locales.js b/new-lamassu-admin/src/pages/Locales/Locales.js
index 991c313e..616ab86d 100644
--- a/new-lamassu-admin/src/pages/Locales/Locales.js
+++ b/new-lamassu-admin/src/pages/Locales/Locales.js
@@ -1,13 +1,18 @@
import { useQuery, useMutation } from '@apollo/react-hooks'
+import { makeStyles } from '@material-ui/core/styles'
import gql from 'graphql-tag'
import * as R from 'ramda'
-import React from 'react'
+import React, { useState } from 'react'
+import Modal from 'src/components/Modal'
+import { Link } from 'src/components/buttons'
import { Table as EditableTable } from 'src/components/editableTable'
import Section from 'src/components/layout/Section'
import TitleSection from 'src/components/layout/TitleSection'
+import { P } from 'src/components/typography'
import { fromNamespace, toNamespace } from 'src/utils/config'
+import { styles } from './Locales.styles'
import {
mainFields,
overrides,
@@ -17,6 +22,8 @@ import {
overridesDefaults
} from './helper'
+const useStyles = makeStyles(styles)
+
const GET_DATA = gql`
query getData {
config
@@ -49,20 +56,62 @@ const SAVE_CONFIG = gql`
}
`
+const FiatCurrencyChangeAlert = ({ open, close, save }) => {
+ const classes = useStyles()
+
+ return (
+
+
+ Please note that all values you set that were based on your prior fiat
+ currency are still the same. If you need to adjust these to reflect the
+ new fiat currency (such as minimum transaction amounts, fixed fees, and
+ compliance triggers, for example), please do so now.
+
+
+ Also, if you have cash-out enabled, you must define new dispenser bill
+ counts for the new currency for cash-out on the new currency to work.
+