Compare commits

...

2 Commits

Author SHA1 Message Date
9847fdb70c chore(api): fix build command
Some checks failed
Build and Push Docker Image / tests (push) Successful in 41s
Build and Push Docker Image / build (push) Failing after 1m1s
2024-11-12 22:05:29 +01:00
82558ff06a chore(app): fix build errors 2024-11-12 22:05:11 +01:00
3 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,7 @@
"name": "@boring.tools/api", "name": "@boring.tools/api",
"scripts": { "scripts": {
"dev": "bun run --hot src/index.ts", "dev": "bun run --hot src/index.ts",
"build": "bun build --entrypoints ./src/index.ts --outdir ../../build/api --target bun --splitting --sourcemap=linked", "build": "bun build --entrypoints ./src/index.ts --outdir ../../build/api --target bun --splitting",
"test": "bun test --preload ./src/index.ts" "test": "bun test --preload ./src/index.ts"
}, },
"dependencies": { "dependencies": {

View File

@ -96,6 +96,7 @@ const Component = () => {
<Textarea <Textarea
placeholder="Some details about the page..." placeholder="Some details about the page..."
{...field} {...field}
value={field.value ?? ''}
/> />
</FormControl>{' '} </FormControl>{' '}
<FormMessage /> <FormMessage />

View File

@ -106,6 +106,7 @@ const Component = () => {
<Textarea <Textarea
placeholder="Some details about the page..." placeholder="Some details about the page..."
{...field} {...field}
value={field.value ?? ''}
/> />
</FormControl>{' '} </FormControl>{' '}
<FormMessage /> <FormMessage />