remove semver from snapshots (#2519)

* remove semver from snapshots

* A snapshot a day keeps the bugs away! 📷🐛 (OS: ubuntu)

* trigger ci

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Kurt Hutten
2024-05-24 21:59:51 +10:00
committed by GitHub
parent cf52e151fb
commit d797d20d50
8 changed files with 5 additions and 7 deletions

View File

@ -13,6 +13,8 @@ export function LowerRightControls(props: React.PropsWithChildren) {
const linkOverrideClassName =
'!text-chalkboard-70 hover:!text-chalkboard-80 dark:!text-chalkboard-40 dark:hover:!text-chalkboard-30'
const isPlayWright = window?.localStorage.getItem('playwright') === 'true'
return (
<section className="fixed bottom-2 right-2 flex flex-col items-end gap-3 pointer-events-none">
{props.children}
@ -23,7 +25,7 @@ export function LowerRightControls(props: React.PropsWithChildren) {
rel="noopener noreferrer"
className={'!no-underline font-mono text-xs ' + linkOverrideClassName}
>
v{APP_VERSION}
v{isPlayWright ? '11.22.33' : APP_VERSION}
</a>
<a
href="https://github.com/KittyCAD/modeling-app/issues/new/choose"