antonpegov / zeropool

Blockchain Wallet for Zero Pool. Origin: https://github.com/zeropoolnetwork/zeropool-frontend
https://near.testnet.frontend.v2.zeropool.network/
0 stars 1 forks source link

Update dependency electron to v19.1.8 [SECURITY] - autoclosed #51

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
electron 19.0.8 -> 19.1.8 age adoption passing confidence

GitHub Vulnerability Alerts

CVE-2022-36077

Impact

When following a redirect, Electron delays a check for redirecting to file:// URLs from other schemes. The contents of the file is not available to the renderer following the redirect, but if the redirect target is a SMB URL such as file://some.website.com/, then in some cases, Windows will connect to that server and attempt NTLM authentication, which can include sending hashed credentials.

Patches

This issue has been fixed in all current stable versions of Electron. Specifically, these versions contain the fixes:

We recommend all apps upgrade to the latest stable version of Electron.

Workarounds

If upgrading isn't possible, this issue can be addressed without upgrading by preventing redirects to file:// URLs in the WebContents.on('will-redirect') event, for all WebContents:

app.on('web-contents-created', (e, webContents) => {
  webContents.on('will-redirect', (e, url) => {
    if (/^file:/.test(url)) e.preventDefault()
  })
})

For more information

If you have any questions or comments about this advisory, email us at security@electronjs.org.

Credit

Thanks to user @​coolcoolnoworries for reporting this issue.

CVE-2022-4135

Heap buffer overflow in GPU in Google Chrome prior to 107.0.5304.121 allowed a remote attacker who had compromised the renderer process to potentially perform a sandbox escape via a crafted HTML page. (Chromium security severity: High)


Release Notes

electron/electron (electron) ### [`v19.1.8`](https://togithub.com/electron/electron/releases/tag/v19.1.8): electron v19.1.8 [Compare Source](https://togithub.com/electron/electron/compare/v19.1.7...v19.1.8) ### Release Notes for v19.1.8 #### Other Changes - Security: backported fix for [`1333333`](https://togithub.com/electron/electron/commit/1333333). [#​35053](https://togithub.com/electron/electron/pull/35053) - Security: backported fix for CVE-2022-4135. [#​36447](https://togithub.com/electron/electron/pull/36447) ### [`v19.1.7`](https://togithub.com/electron/electron/releases/tag/v19.1.7): electron v19.1.7 [Compare Source](https://togithub.com/electron/electron/compare/v19.1.6...v19.1.7) ### Release Notes for v19.1.7 #### Fixes - Fixed crash in `AXNodeObject::TextFromDescendants()`. [#​36285](https://togithub.com/electron/electron/pull/36285) #### Other Changes - Security: backported fix for [`1376637`](https://togithub.com/electron/electron/commit/1376637). [#​36312](https://togithub.com/electron/electron/pull/36312) - Security: backported fix for CVE-2022-3885. [#​36295](https://togithub.com/electron/electron/pull/36295) - Security: backported fix for CVE-2022-3887. [#​36305](https://togithub.com/electron/electron/pull/36305) - Security: backported fix for CVE-2022-3888. [#​36297](https://togithub.com/electron/electron/pull/36297) - Security: backported fix for CVE-2022-3889. [#​36299](https://togithub.com/electron/electron/pull/36299) - Security: backported fix for CVE-2022-3890. [#​36301](https://togithub.com/electron/electron/pull/36301) ### [`v19.1.6`](https://togithub.com/electron/electron/releases/tag/v19.1.6): electron v19.1.6 [Compare Source](https://togithub.com/electron/electron/compare/v19.1.5...v19.1.6) ### Release Notes for v19.1.6 #### Fixes - Fixed crash in `AXNodeObject::TextFromDescendants()`. [#​36285](https://togithub.com/electron/electron/pull/36285) #### Other Changes - Security: backported fix for [`1376637`](https://togithub.com/electron/electron/commit/1376637). [#​36312](https://togithub.com/electron/electron/pull/36312) - Security: backported fix for CVE-2022-3885. [#​36295](https://togithub.com/electron/electron/pull/36295) - Security: backported fix for CVE-2022-3887. [#​36305](https://togithub.com/electron/electron/pull/36305) - Security: backported fix for CVE-2022-3888. [#​36297](https://togithub.com/electron/electron/pull/36297) - Security: backported fix for CVE-2022-3889. [#​36299](https://togithub.com/electron/electron/pull/36299) - Security: backported fix for CVE-2022-3890. [#​36301](https://togithub.com/electron/electron/pull/36301) ### [`v19.1.5`](https://togithub.com/electron/electron/releases/tag/v19.1.5): electron v19.1.5 [Compare Source](https://togithub.com/electron/electron/compare/v19.1.4...v19.1.5) ### Release Notes for v19.1.5 #### Other Changes - Security: backported fix for [`1356234`](https://togithub.com/electron/electron/commit/1356234). [#​36221](https://togithub.com/electron/electron/pull/36221) - Security: backported fix for [`1361612`](https://togithub.com/electron/electron/commit/1361612). [#​36218](https://togithub.com/electron/electron/pull/36218) - Security: backported fix for CVE-2022-3654. [#​36207](https://togithub.com/electron/electron/pull/36207) - Security: backported fix for CVE-2022-3656. [#​36224](https://togithub.com/electron/electron/pull/36224) - Security: backported fix for CVE-2022-3723. [#​36225](https://togithub.com/electron/electron/pull/36225) #### Unknown - Reverted fix for chromium:1361612 due to stability issues. [#​36262](https://togithub.com/electron/electron/pull/36262) ### [`v19.1.4`](https://togithub.com/electron/electron/releases/tag/v19.1.4): electron v19.1.4 [Compare Source](https://togithub.com/electron/electron/compare/v19.1.3...v19.1.4) ### Release Notes for v19.1.4 #### Other Changes - Security: backported fix for [`1364604`](https://togithub.com/electron/electron/commit/1364604). [#​36081](https://togithub.com/electron/electron/pull/36081) - Security: backported fix for [`1368076`](https://togithub.com/electron/electron/commit/1368076). [#​36086](https://togithub.com/electron/electron/pull/36086) - Security: backported fix for [`1373314`](https://togithub.com/electron/electron/commit/1373314). [#​36215](https://togithub.com/electron/electron/pull/36215) - Security: backported fix for CVE-2022-3450. [#​36077](https://togithub.com/electron/electron/pull/36077) - Security: backported fix for CVE-2022-3652. [#​36205](https://togithub.com/electron/electron/pull/36205) - Security: backported fix for CVE-2022-3653. [#​36209](https://togithub.com/electron/electron/pull/36209) ### [`v19.1.3`](https://togithub.com/electron/electron/releases/tag/v19.1.3): electron v19.1.3 [Compare Source](https://togithub.com/electron/electron/compare/v19.1.2...v19.1.3) ### Release Notes for v19.1.3 #### Other Changes - Security: backported fix for CVE-2022-3304. [#​35879](https://togithub.com/electron/electron/pull/35879) - Security: backported fix for CVE-2022-3307. [#​35882](https://togithub.com/electron/electron/pull/35882) - Security: backported fix for CVE-2022-3315. [#​35918](https://togithub.com/electron/electron/pull/35918) ### [`v19.1.2`](https://togithub.com/electron/electron/releases/tag/v19.1.2): electron v19.1.2 [Compare Source](https://togithub.com/electron/electron/compare/v19.1.1...v19.1.2) ### Release Notes for v19.1.2 #### Fixes - Provided display_id for desktopCapturer on Linux. [#​35835](https://togithub.com/electron/electron/pull/35835) (Also in [20](https://togithub.com/electron/electron/pull/35834), [21](https://togithub.com/electron/electron/pull/35836)) #### Other Changes - Security: backported fix for [`1356308`](https://togithub.com/electron/electron/commit/1356308). [#​35891](https://togithub.com/electron/electron/pull/35891) - Security: backported fix for CVE-2022-3370. [#​35885](https://togithub.com/electron/electron/pull/35885) - Security: backported fix for CVE-2022-3373. [#​35888](https://togithub.com/electron/electron/pull/35888) ### [`v19.1.1`](https://togithub.com/electron/electron/releases/tag/v19.1.1): electron v19.1.1 [Compare Source](https://togithub.com/electron/electron/compare/v19.1.0...v19.1.1) ### Release Notes for v19.1.1 #### Fixes - Fixed an issue where DevTools could not be docked with Windows Control Overlay enabled. [#​35763](https://togithub.com/electron/electron/pull/35763) (Also in [20](https://togithub.com/electron/electron/pull/35764), [21](https://togithub.com/electron/electron/pull/35765)) - Usage of `safeStorage` now consistently uses the correct service name on macOS regardless of timing with browser window construction. [#​35795](https://togithub.com/electron/electron/pull/35795) (Also in [20](https://togithub.com/electron/electron/pull/35796)) #### Other Changes - Security: backported fix chromium:1346938. [#​35826](https://togithub.com/electron/electron/pull/35826) - Security: backported fix for [`1348283`](https://togithub.com/electron/electron/commit/1348283). [#​35793](https://togithub.com/electron/electron/pull/35793) - Security: backported fix for CVE-2022-3196. [#​35787](https://togithub.com/electron/electron/pull/35787) - Security: backported fix for CVE-2022-3197. [#​35789](https://togithub.com/electron/electron/pull/35789) - Security: backported fix for CVE-2022-3198. [#​35791](https://togithub.com/electron/electron/pull/35791) - Security: backported fix for chromium:1359294,v8:12578. [#​35774](https://togithub.com/electron/electron/pull/35774) #### Documentation - Documentation changes: [#​35330](https://togithub.com/electron/electron/pull/35330) ### [`v19.1.0`](https://togithub.com/electron/electron/releases/tag/v19.1.0): electron v19.1.0 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.17...v19.1.0) ### Release Notes for v19.1.0 #### Features - Added `webFrameMain.origin`. [#​35624](https://togithub.com/electron/electron/pull/35624) (Also in [20](https://togithub.com/electron/electron/pull/35535), [21](https://togithub.com/electron/electron/pull/35534)) #### Fixes - Enable WCO maximize button when window enters tablet mode and is not already maximized. [#​35677](https://togithub.com/electron/electron/pull/35677) (Also in [20](https://togithub.com/electron/electron/pull/35663), [21](https://togithub.com/electron/electron/pull/35664)) - Fixed `uv_os_gethostname` failing on Windows 7. [#​35703](https://togithub.com/electron/electron/pull/35703) (Also in [20](https://togithub.com/electron/electron/pull/35705), [21](https://togithub.com/electron/electron/pull/35704)) - Fixed a bug where calling `atob` in the renderer process could fail under some circumstances. [#​35444](https://togithub.com/electron/electron/pull/35444) (Also in [20](https://togithub.com/electron/electron/pull/35445), [21](https://togithub.com/electron/electron/pull/35443)) - Fixed an edge case in `app.isInApplicationsFolder()` which would return false incorrectly in some cases. [#​35729](https://togithub.com/electron/electron/pull/35729) (Also in [20](https://togithub.com/electron/electron/pull/35731), [21](https://togithub.com/electron/electron/pull/35730)) #### Other Changes - Fixed an issue where a child of a window using WCO would not have the navigator defined. [#​35701](https://togithub.com/electron/electron/pull/35701) - Security: backported fix for CVE-2022-3038. [#​35548](https://togithub.com/electron/electron/pull/35548) - Security: backported fix for CVE-2022-3199. [#​35750](https://togithub.com/electron/electron/pull/35750) ### [`v19.0.17`](https://togithub.com/electron/electron/releases/tag/v19.0.17): electron v19.0.17 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.16...v19.0.17) ### Release Notes for v19.0.17 #### Fixes - Added a background to the WCO container to avoid rendering glitches. [#​35610](https://togithub.com/electron/electron/pull/35610) (Also in [20](https://togithub.com/electron/electron/pull/35611), [21](https://togithub.com/electron/electron/pull/35612)) - Added support for Windows drop-down dialog extensions. [#​35660](https://togithub.com/electron/electron/pull/35660) (Also in [18](https://togithub.com/electron/electron/pull/35661), [20](https://togithub.com/electron/electron/pull/35659)) - Fixed issue with history.back() in sandboxed iframes affecting parent browsing context. [#​35621](https://togithub.com/electron/electron/pull/35621) (Also in [20](https://togithub.com/electron/electron/pull/35622), [21](https://togithub.com/electron/electron/pull/35623)) - Fixed session.getBlobData never resolves with blob sizes > 65536. [#​35600](https://togithub.com/electron/electron/pull/35600) (Also in [20](https://togithub.com/electron/electron/pull/35601), [21](https://togithub.com/electron/electron/pull/35602)) #### Other Changes - Security: backported fix for CVE-2022-3075. [#​35545](https://togithub.com/electron/electron/pull/35545) #### Documentation - Documentation changes: [#​35647](https://togithub.com/electron/electron/pull/35647) ### [`v19.0.16`](https://togithub.com/electron/electron/releases/tag/v19.0.16): electron v19.0.16 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.15...v19.0.16) ### Release Notes for v19.0.16 #### Other Changes - Security: backported fix for [`1352549`](https://togithub.com/electron/electron/commit/1352549). [#​35555](https://togithub.com/electron/electron/pull/35555) - Security: backported fix for CVE-2022-3040. [#​35552](https://togithub.com/electron/electron/pull/35552) - Security: backported fix for CVE-2022-3041. [#​35558](https://togithub.com/electron/electron/pull/35558) ### [`v19.0.15`](https://togithub.com/electron/electron/releases/tag/v19.0.15): electron v19.0.15 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.14...v19.0.15) ### Release Notes for v19.0.15 #### Fixes - Fixed a potential crash on WebWorker destruction. [#​35490](https://togithub.com/electron/electron/pull/35490) (Also in [20](https://togithub.com/electron/electron/pull/35491), [21](https://togithub.com/electron/electron/pull/35492)) - Fixed an issue where frameless resizable windows showed Window 7 style frames while opening. [#​35351](https://togithub.com/electron/electron/pull/35351) (Also in [18](https://togithub.com/electron/electron/pull/35477), [20](https://togithub.com/electron/electron/pull/35352), [21](https://togithub.com/electron/electron/pull/35353)) - Fixed an issue where frameless windows with `roundedCorners: false` couldn't enter fullscreen without crashing. [#​35456](https://togithub.com/electron/electron/pull/35456) (Also in [20](https://togithub.com/electron/electron/pull/35455), [21](https://togithub.com/electron/electron/pull/35454)) - Fixed an issue where part of the BrowserView could be cut off when calling `setBounds` on some windows. [#​35495](https://togithub.com/electron/electron/pull/35495) (Also in [20](https://togithub.com/electron/electron/pull/35494)) #### Other Changes - Security: backported fix for CVE-2022-2854. [#​35427](https://togithub.com/electron/electron/pull/35427) - Security: backported fix for CVE-2022-2855. [#​35425](https://togithub.com/electron/electron/pull/35425) ### [`v19.0.14`](https://togithub.com/electron/electron/releases/tag/v19.0.14): electron v19.0.14 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.13...v19.0.14) ### Release Notes for v19.0.14 #### Fixes - Picture-In-Picture mode no longer becomes a red rectangle on hover. [#​35400](https://togithub.com/electron/electron/pull/35400) (Also in [20](https://togithub.com/electron/electron/pull/35402), [21](https://togithub.com/electron/electron/pull/35401)) ### [`v19.0.13`](https://togithub.com/electron/electron/releases/tag/v19.0.13): electron v19.0.13 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.12...v19.0.13) ### Release Notes for v19.0.13 #### Fixes - Fixed an issue where WCO could occlude DevTools opened in any non-detached mode. [#​35308](https://togithub.com/electron/electron/pull/35308) (Also in [18](https://togithub.com/electron/electron/pull/35307), [20](https://togithub.com/electron/electron/pull/35309)) - Fixed crash in renderer when resuming system from sleep. [#​35337](https://togithub.com/electron/electron/pull/35337) (Also in [18](https://togithub.com/electron/electron/pull/35340), [20](https://togithub.com/electron/electron/pull/35338), [21](https://togithub.com/electron/electron/pull/35336)) - Fixed the alignment of the WCO restore button. [#​35314](https://togithub.com/electron/electron/pull/35314) (Also in [20](https://togithub.com/electron/electron/pull/34888)) #### Other Changes - Backported fix for [`1333970`](https://togithub.com/electron/electron/commit/1333970). [#​35267](https://togithub.com/electron/electron/pull/35267) - Security: backported fix for CVE-2022-2618. [#​35273](https://togithub.com/electron/electron/pull/35273) - Security: backported fix for CVE-2022-2624. [#​35269](https://togithub.com/electron/electron/pull/35269) ### [`v19.0.12`](https://togithub.com/electron/electron/releases/tag/v19.0.12): electron v19.0.12 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.11...v19.0.12) ### Release Notes for v19.0.12 #### Fixes - Fixed an issue where app.relaunch loses args when execPath is specified. [#​35252](https://togithub.com/electron/electron/pull/35252) (Also in [20](https://togithub.com/electron/electron/pull/35253), [21](https://togithub.com/electron/electron/pull/35254)) - Fixed support for Wayland client-side decorations. [#​35207](https://togithub.com/electron/electron/pull/35207) (Also in [20](https://togithub.com/electron/electron/pull/35206)) #### Other Changes - Security: backported fix for [`1264288`](https://togithub.com/electron/electron/commit/1264288). [#​35237](https://togithub.com/electron/electron/pull/35237) - Security: backported fix for CVE-2022-2610. [#​35271](https://togithub.com/electron/electron/pull/35271) - Security: backported fix for CVE-2022-2615. [#​35275](https://togithub.com/electron/electron/pull/35275) - Security: backported fix for chromium:1343889. [#​35239](https://togithub.com/electron/electron/pull/35239) #### Unknown - Fixed a typo in the section on debugging with VSCode. [#​35284](https://togithub.com/electron/electron/pull/35284) (Also in [20](https://togithub.com/electron/electron/pull/35286), [21](https://togithub.com/electron/electron/pull/35285)) ### [`v19.0.11`](https://togithub.com/electron/electron/releases/tag/v19.0.11): electron v19.0.11 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.10...v19.0.11) ### Release Notes for v19.0.11 #### Fixes - Fixed WCO not responding to touch events on windows. [#​35176](https://togithub.com/electron/electron/pull/35176) (Also in [18](https://togithub.com/electron/electron/pull/35177), [20](https://togithub.com/electron/electron/pull/35174)) - Fixed `webContents.getUserAgent()` incorrectly returning an empty string unless previously set. [#​35132](https://togithub.com/electron/electron/pull/35132) (Also in [17](https://togithub.com/electron/electron/pull/35151), [18](https://togithub.com/electron/electron/pull/35130), [20](https://togithub.com/electron/electron/pull/35131)) - Fixed context menu not showing all items on macOS when dock is not hidden. [#​35199](https://togithub.com/electron/electron/pull/35199) (Also in [18](https://togithub.com/electron/electron/pull/35198)) - None. [#​35172](https://togithub.com/electron/electron/pull/35172) (Also in [18](https://togithub.com/electron/electron/pull/35171), [20](https://togithub.com/electron/electron/pull/35173)) #### Other Changes - Disabled GPU acceleration on VMware on Linux. [#​35185](https://togithub.com/electron/electron/pull/35185) ### [`v19.0.10`](https://togithub.com/electron/electron/releases/tag/v19.0.10): electron v19.0.10 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.9...v19.0.10) ### Release Notes for v19.0.10 #### Fixes - Added support for `--ozone-platform-hint` flag on Linux. [#​35015](https://togithub.com/electron/electron/pull/35015) (Also in [20](https://togithub.com/electron/electron/pull/35014)) - Fixed a Windows Control Overlay issue where a window taken directly from minimized to maximized state could have incorrect hover state. [#​35073](https://togithub.com/electron/electron/pull/35073) (Also in [20](https://togithub.com/electron/electron/pull/35074)) - Fixed a crash when calling `BrowserWindow.setEnabled()`. [#​34971](https://togithub.com/electron/electron/pull/34971) (Also in [18](https://togithub.com/electron/electron/pull/34973), [20](https://togithub.com/electron/electron/pull/34972)) - Fixed an issue in which calling setBounds() after e.preventDefault in a 'will-move' or 'will-resize' event wouldn't change the window's shape until the mouse button was released. [#​35083](https://togithub.com/electron/electron/pull/35083) (Also in [20](https://togithub.com/electron/electron/pull/35084)) - Fixed an issue with fullscreen transitions when HTML fullscreen is requested. [#​34908](https://togithub.com/electron/electron/pull/34908) (Also in [20](https://togithub.com/electron/electron/pull/34468)) - Fixed inertial scroll is broken when the scrollable element has an overlay with pointer-events: none. [#​35051](https://togithub.com/electron/electron/pull/35051) - Fixed symbol generation on 32-bit Windows release builds. [#​35090](https://togithub.com/electron/electron/pull/35090) (Also in [20](https://togithub.com/electron/electron/pull/35091)) ### [`v19.0.9`](https://togithub.com/electron/electron/releases/tag/v19.0.9): electron v19.0.9 [Compare Source](https://togithub.com/electron/electron/compare/v19.0.8...v19.0.9) ### Release Notes for v19.0.9 #### Fixes - Ensures that `requestMediaKeySystemAccess` eventually resolves / rejects. [#​34890](https://togithub.com/electron/electron/pull/34890) (Also in [20](https://togithub.com/electron/electron/pull/34891)) - Fixed a potential crash when changing window settings after initializing WCO with an invalid `titleBarStyle`. [#​34874](https://togithub.com/electron/electron/pull/34874) (Also in [18](https://togithub.com/electron/electron/pull/34873), [20](https://togithub.com/electron/electron/pull/34875)) - Fixed alwaysOnTop BrowserWindow option for X11 Linux. [#​34912](https://togithub.com/electron/electron/pull/34912) (Also in [18](https://togithub.com/electron/electron/pull/34911), [20](https://togithub.com/electron/electron/pull/34913)) - Fixed an issue where BrowserWindows on macOS were incorrectly marked as resizable. [#​34906](https://togithub.com/electron/electron/pull/34906) (Also in [18](https://togithub.com/electron/electron/pull/34907), [20](https://togithub.com/electron/electron/pull/34433)) - Fixed an issue where calling `BrowserWindow.setRepresentedFilename` on macOS with `titlebarStyle: 'hiddenInset'` or `titlebarStyle: 'hidden'` inadvertently moves the traffic light location. [#​34848](https://togithub.com/electron/electron/pull/34848) (Also in [18](https://togithub.com/electron/electron/pull/34847), [20](https://togithub.com/electron/electron/pull/34849)) - Fixed an issue where printing with an invalid `deviceName` on Linux caused silent failures. [#​34900](https://togithub.com/electron/electron/pull/34900) (Also in [20](https://togithub.com/electron/electron/pull/34901)) - Fixed an issue where the minimize button with WCO enabled would incorrectly be highlighted in some cases. [#​34839](https://togithub.com/electron/electron/pull/34839) (Also in [17](https://togithub.com/electron/electron/pull/34837), [18](https://togithub.com/electron/electron/pull/34838), [20](https://togithub.com/electron/electron/pull/34840)) - Fixed empty app_id when running under wayland. [#​34878](https://togithub.com/electron/electron/pull/34878) (Also in [18](https://togithub.com/electron/electron/pull/34877), [20](https://togithub.com/electron/electron/pull/34879)) - Prevent brief display of "Ozone X11" in window title on Linux. [#​34929](https://togithub.com/electron/electron/pull/34929) (Also in [18](https://togithub.com/electron/electron/pull/34943)) #### Other Changes - Updated Chromium to 102.0.5005.167. [#​35017](https://togithub.com/electron/electron/pull/35017)

Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

netlify[bot] commented 1 year ago

Deploy Preview for inquisitive-queijadas-971eae failed.

Name Link
Latest commit b6640be80382bee0482cfdd3e97b57014dbdef83
Latest deploy log https://app.netlify.com/sites/inquisitive-queijadas-971eae/deploys/63855b31c5777d00084b3bb8