Skip to content

Commit

Permalink
Fix create chat modal
Browse files Browse the repository at this point in the history
  • Loading branch information
samchuk-vlad committed Apr 18, 2024
1 parent d026a2a commit 474ba61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,10 @@ jobs:
GH_SELLER_CLIENT_ID=5DYm3Wk4aa1BbfhH1ajmY6MNEELXoicmKRnP4tzHYjSKnD9K
GH_SELLER_TOKEN_SIGNER=retire strong pole intact cool music high path salt praise stadium spatial
GH_SERVER_MNEMONIC=plunge pumpkin penalty segment cattle more print below fat lemon clap uniform
GH_NEXT_PUBLIC_DATAHUB_QUERY_URL=https://ownership-pallet-data-hub.subsocial.network/graphql
GH_NEXT_PUBLIC_DATAHUB_SUBSCRIPTION_URL=wss://ownership-pallet-data-hub.subsocial.network/graphql-ws
GH_NEXT_PUBLIC_DATAHUB_QUERY_URL=https://ownership-pallet-data-hub-core.subsocial.network/graphql
GH_NEXT_PUBLIC_DATAHUB_SUBSCRIPTION_URL=wss://ownership-pallet-data-hub-core.subsocial.network/graphql-ws
GH_NEXT_PUBLIC_APP_ID=12364
GH_DATAHUB_QUEUE_URL=https://ownership-pallet-queue-data-hub.subsocial.network/graphql
GH_DATAHUB_QUEUE_URL=https://ownership-pallet-queue-data-hub-core.subsocial.network/graphql
GH_DATAHUB_QUEUE_TOKEN=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhZG1pbiI6dHJ1ZX0.jpXwkIJ4DpV4IvSI3eWVVXE6x89qr_GIq7IlbBv5YE0
# GH_NEXT_PUBLIC_ENABLE_MAINTENANCE_PAGE=true
tags: |
Expand Down
4 changes: 1 addition & 3 deletions src/components/chat/CreateChatModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,7 @@ const createModalIfNotExist = () => {
let modalIframe = document.getElementById('create-modal-iframe') as HTMLIFrameElement | null

if (!modalIframe) {
document.body.appendChild(document.createElement('iframe'))

const iframe = document.querySelector('iframe')
const iframe = document.body.appendChild(document.createElement('iframe'))

if (!iframe) return null

Expand Down

0 comments on commit 474ba61

Please sign in to comment.