Files
cypress/packages/server/lib/gui/links.ts
T
Tyler Biethman c2b270f128 chore: Removing workaround for long Cypress verification times (#21541)
* chore: Removing workaround for long Cypress verification times

* Blank commit for Percy build

* Getting a build

* Need the mac build

* Missed a few!

* We apparently still need this one.
2022-05-19 12:29:56 +10:00

9 lines
254 B
TypeScript

import { shell } from 'electron'
// NOTE: in order for query params to be passed through on links
// forwardQueryParams: true must be set for that slug in the on package
export const openExternal = (url: string) => {
return shell.openExternal(url)
}