diff --git a/.github/workflows/pr-reminder.yml b/.github/workflows/pr-reminder.yml index e455d557a7..8d6d93a7f2 100644 --- a/.github/workflows/pr-reminder.yml +++ b/.github/workflows/pr-reminder.yml @@ -3,7 +3,7 @@ name: PRs reviews reminder on: schedule: - cron: "0 8 * * 1-5" - - cron: '58 9 * * 1-5' + - cron: '55 9 * * 1-5' workflow_dispatch: jobs: @@ -17,9 +17,9 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} - freeze-date: '2024-11-04T18:00:00Z' + freeze-date: '2024-12-02T18:00:00Z' - name: Reminder for standup - if: github.event.schedule == '58 9 * * 1-5' + if: github.event.schedule == '55 9 * * 1-5' uses: Aniket-Engg/pr-reviews-reminder-action@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/apps/circuit-compiler/src/app/components/container.tsx b/apps/circuit-compiler/src/app/components/container.tsx index 80663789cd..765f33abe3 100644 --- a/apps/circuit-compiler/src/app/components/container.tsx +++ b/apps/circuit-compiler/src/app/components/container.tsx @@ -73,14 +73,20 @@ export function Container () { full circom error: ${JSON.stringify(report, null, 2)} explain why the error occurred and how to fix it. ` - await circuitApp.plugin.call('remixAI' as any, 'chatPipe', 'error_explaining', message) + await circuitApp.plugin.call('popupPanel' as any, 'showPopupPanel', true) + setTimeout(async () => { + await circuitApp.plugin.call('remixAI' as any, 'chatPipe', 'error_explaining', message) + }, 500) } else { const message = ` error message: ${error} full circom error: ${JSON.stringify(report, null, 2)} explain why the error occurred and how to fix it. ` - await circuitApp.plugin.call('remixAI' as any, 'chatPipe', 'error_explaining', message) + await circuitApp.plugin.call('popupPanel' as any, 'showPopupPanel', true) + setTimeout(async () => { + await circuitApp.plugin.call('remixAI' as any, 'chatPipe', 'error_explaining', message) + }, 500) } } else { const error = report.message @@ -89,7 +95,10 @@ export function Container () { full circom error: ${JSON.stringify(report, null, 2)} explain why the error occurred and how to fix it. ` - await circuitApp.plugin.call('remixAI' as any, 'chatPipe', 'error_explaining', message) + await circuitApp.plugin.call('popupPanel' as any, 'showPopupPanel', true) + setTimeout(async () => { + await circuitApp.plugin.call('remixAI' as any, 'chatPipe', 'error_explaining', message) + }, 500) } } diff --git a/apps/quick-dapp/src/actions/index.ts b/apps/quick-dapp/src/actions/index.ts index fbcda6ac4d..e395016fef 100644 --- a/apps/quick-dapp/src/actions/index.ts +++ b/apps/quick-dapp/src/actions/index.ts @@ -171,6 +171,7 @@ export const deploy = async (payload: any, callback: any) => { ...instance, shortname: payload.shortname, shareTo: payload.shareTo, + showLogo: !!logo, }) const files: Record = { @@ -192,7 +193,9 @@ export const deploy = async (payload: any, callback: any) => { files[`dir/${path}`] = resp.data; } - files['dir/assets/logo.png'] = logo + if (logo) { + files['dir/assets/logo.png'] = logo + } files['dir/CORS'] = '*' files['dir/index.html'] = files['dir/index.html'].replace( 'assets/css/themes/remix-dark_tvx1s2.css', @@ -341,7 +344,7 @@ export const initInstance = async ({ } : { A: ids }; - const logo = await axios.get('https://dev.remix-dapp.pages.dev/logo.png', { responseType: 'arraybuffer' }) + // const logo = await axios.get('https://dev.remix-dapp.pages.dev/logo.png', { responseType: 'arraybuffer' }) await dispatch({ type: 'SET_INSTANCE', @@ -353,7 +356,7 @@ export const initInstance = async ({ natSpec, solcVersion: getVersion(solcVersion), ...lowLevel, - logo: logo.data, + // logo: logo.data, }, }); }; diff --git a/apps/quick-dapp/src/components/DeployPanel/index.tsx b/apps/quick-dapp/src/components/DeployPanel/index.tsx index 48a774a9bd..3e08dd72fc 100644 --- a/apps/quick-dapp/src/components/DeployPanel/index.tsx +++ b/apps/quick-dapp/src/components/DeployPanel/index.tsx @@ -51,6 +51,8 @@ function DeployPanel(): JSX.Element {

QuickDapp