fix: query checking (#2137)

fix: the logic should be to check if object exist not if it's true or false
This commit is contained in:
Dakshesh Jain 2023-09-11 13:21:50 +05:30 committed by GitHub
parent 1a37668f0b
commit 991258084e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,12 +25,7 @@ const Editor: NextPage = () => {
const isEditable = editable === "true";
const {
watch,
setValue,
control,
formState: { errors },
} = useForm({
const { watch, setValue, control } = useForm({
defaultValues: {
data: "",
data_html: "",
@ -39,11 +34,11 @@ const Editor: NextPage = () => {
useEffect(() => {
setIsLoading(true);
if (!isEditable) return;
if (!router?.query?.["editable"]) return;
setIsLoading(false);
const data_html = Cookies.get("data_html");
setValue("data_html", data_html ?? "");
}, [isEditable, setValue]);
}, [isEditable, setValue, router]);
return (
<WebViewLayout fullScreen={isLoading}>