From 0a601e8e68af30de1fd74339db4a8d21e0a6b15b Mon Sep 17 00:00:00 2001 From: Danielo Rodriguez Date: Wed, 20 Dec 2023 09:15:30 +0100 Subject: [PATCH] feat: text document block. Allows to render a text in the form using the current form values --- src/FormModal.ts | 2 +- src/std/index.test.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/FormModal.ts b/src/FormModal.ts index 06f63c94..4cdcd562 100644 --- a/src/FormModal.ts +++ b/src/FormModal.ts @@ -10,7 +10,7 @@ import { FileSuggest } from "./suggesters/suggestFile"; import { DataviewSuggest } from "./suggesters/suggestFromDataview"; import { SvelteComponent } from "svelte"; import { executeSandboxedDvQuery, sandboxedDvQuery } from "./suggesters/SafeDataviewQuery"; -import { A, E, flow, parseFunctionBody, pipe, throttle } from "@std"; +import { A, E, parseFunctionBody, pipe, throttle } from "@std"; import { log_error, log_notice } from "./utils/Log"; import { FieldValue, FormEngine, makeFormEngine } from "./store/formStore"; import { Writable } from "svelte/store"; diff --git a/src/std/index.test.ts b/src/std/index.test.ts index bfa6ebbe..6086fe66 100644 --- a/src/std/index.test.ts +++ b/src/std/index.test.ts @@ -1,4 +1,3 @@ -import { right } from "fp-ts/Separated"; import { E, parseFunctionBody, pipe, trySchemas } from "./index"; import { string, number, array, boolean, object } from "valibot";