Skip to content

Commit

Permalink
testing actions
Browse files Browse the repository at this point in the history
  • Loading branch information
scx1332 committed Oct 10, 2023
1 parent 96800a4 commit 7d31d8c
Show file tree
Hide file tree
Showing 3 changed files with 2,557 additions and 2 deletions.
1 change: 0 additions & 1 deletion frontend/src/ConfigProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ export const ConfigProvider = (props: ConfigProviderProps) => {
const [config, setConfig] = useState<PaymentDriverConfig | null | string>(null);
const { backendSettings } = useContext(BackendSettingsContext);


useEffect(() => {
(async () => {
setConfig(`Connecting to ${backendSettings.backendUrl}`);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/ContractDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const ContractDetails = (props: ContractDetailsProps) => {
contractString = `${chainSetup.currencyGlmSymbol} token`;
}

const url = `${chainSetup.blockExplorerUrl}/address/${props.contractAddress}`
const url = `${chainSetup.blockExplorerUrl}/address/${props.contractAddress}`;

return (
<a href={url} title={contractTitle}>
Expand Down
Loading

0 comments on commit 7d31d8c

Please sign in to comment.