Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed Buying Domain #318

Merged
merged 3 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
GH_NEXT_PUBLIC_DATAHUB_SUBSCRIPTION_URL=wss://sub-data-hub.subsocial.network/graphql-ws
GH_DATAHUB_QUEUE_URL=https://sub-queue-data-hub.subsocial.network/graphql
GH_DATAHUB_QUEUE_TOKEN=${{ secrets.DATAHUB_QUEUE_TOKEN }}
GH_NEXT_PUBLIC_ENABLE_MAINTENANCE_PAGE=true
# GH_NEXT_PUBLIC_ENABLE_MAINTENANCE_PAGE=true

tags: |
${{ env.image }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/feature-based.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
GH_NEXT_PUBLIC_DATAHUB_SUBSCRIPTION_URL=wss://notifications-data-hub.subsocial.network/graphql-ws
GH_DATAHUB_QUEUE_URL=https://notifications-queue-data-hub.subsocial.network/graphql
GH_DATAHUB_QUEUE_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhZG1pbiI6dHJ1ZX0.jpXwkIJ4DpV4IvSI3eWVVXE6x89qr_GIq7IlbBv5YE0
GH_NEXT_PUBLIC_ENABLE_MAINTENANCE_PAGE=true
# GH_NEXT_PUBLIC_ENABLE_MAINTENANCE_PAGE=true
tags: |
${{ env.image }}
cache-from: type=local,src=/tmp/.buildx-cache
Expand Down
1 change: 1 addition & 0 deletions src/components/substrate/SubstrateTxButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ function TxButton({
} else {
const currentWallet = getCurrentWallet()
const wallet = getWalletBySource(currentWallet)
await wallet?.enable(appName)
signer = wallet?.signer
}

Expand Down
2 changes: 1 addition & 1 deletion src/components/wallets/wallet-list/WalletsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { supportedWallets } from '../supportedWallets/index'
import { Wallet } from '../types'
import styles from './WalletList.module.sass'

export const CURRENT_WALLET = 'CurrentWalletName'
export const CURRENT_WALLET = 'preferred-wallet'

const { appName } = config

Expand Down
Loading