pin browserless/chrome version as latest it too unstable

This commit is contained in:
Amruth Pillai
2023-11-14 21:53:10 +01:00
parent 044ef8bdb5
commit 72852f90e2
10 changed files with 16 additions and 18 deletions

View File

@ -49,9 +49,8 @@ export const BuilderToolbar = () => {
return (
<motion.div
initial={{ opacity: 0, bottom: -64 }}
animate={{ opacity: 0.3, bottom: -28 }}
whileHover={{ opacity: 1, bottom: 0 }}
initial={{ opacity: 0.5 }}
whileHover={{ opacity: 1 }}
className="fixed inset-x-0 mx-auto hidden pb-4 pt-6 text-center md:block"
>
<div className="inline-flex items-center justify-center rounded-full bg-background px-4 shadow-xl">

View File

@ -1,7 +1,7 @@
import "@/client/libs/dayjs";
import { i18n } from "@lingui/core";
import { detect, fromNavigator, fromStorage, fromUrl } from "@lingui/detect-locale";
import { detect, fromStorage, fromUrl } from "@lingui/detect-locale";
import { I18nProvider } from "@lingui/react";
import { useEffect } from "react";
@ -20,7 +20,6 @@ export const LocaleProvider = ({ children }: Props) => {
const detectedLocale = detect(
fromUrl("locale"),
fromStorage("locale"),
fromNavigator(),
userLocale,
defaultLocale,
)!;