diff --git a/docs/bridge/docs/01-About/04-SYN.md b/docs/bridge/docs/01-About/04-SYN.md index 33114ce99d..afe1ac7200 100644 --- a/docs/bridge/docs/01-About/04-SYN.md +++ b/docs/bridge/docs/01-About/04-SYN.md @@ -16,6 +16,10 @@ Liquidity for the [$SYN](https://coinmarketcap.com/currencies/synapse-2/) token | Binance (Spot) | `https://www.binance.com/en/trade/SYN_USDT?type=spot` [↗](https://www.binance.com/en/trade/SYN_USDT?type=spot) | | Binance (Perpetuals) | `https://www.binance.com/en/futures/SYNUSDT` [↗](https://www.binance.com/en/futures/SYNUSDT) | | Bybit (SYN/USDT) | `https://www.bybit.com/trade/usdt/SYNUSDT` [↗](https://www.bybit.com/trade/usdt/SYNUSDT) | +| HTX | `https://www.htx.com/price/syn/` [↗](https://www.htx.com/price/syn/) | +| Kraken | `https://www.kraken.com/prices/synapse` [↗](https://www.kraken.com/prices/synapse) | +| KuCoin | `https://www.kucoin.com/price/SYN` [↗](https://www.kucoin.com/price/SYN) | +
diff --git a/packages/synapse-interface/components/toast/index.tsx b/packages/synapse-interface/components/toast/index.tsx index 83d4bde824..2a19aa0b98 100644 --- a/packages/synapse-interface/components/toast/index.tsx +++ b/packages/synapse-interface/components/toast/index.tsx @@ -1,15 +1,16 @@ -// @ts-nocheck import React from 'react' -import toast, { Toaster, ToastBar } from 'react-hot-toast' +import { Toaster as HotToaster, ToastBar as HotToastBar } from 'react-hot-toast' import ToastContent from './ToastContent' -const CustomToaster: React.FC = () => { +const Toaster = HotToaster as React.FC +const ToastBar = HotToastBar as React.FC + +export default function CustomToaster(): React.ReactElement { return (