Fix imports

This commit is contained in:
Owen
2026-05-02 20:46:45 -07:00
parent 3694f43ae8
commit 61de100630
4 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
import logger from "@server/logger";
import { processAlerts } from "@server/lib/alerts";
import { processAlerts } from "#dynamic/lib/alerts";
import {
db,
statusHistory,

View File

@@ -1,5 +1,5 @@
import logger from "@server/logger";
import { processAlerts } from "@server/lib/alerts";
import { processAlerts } from "#dynamic/lib/alerts";
import { db, logsDb, statusHistory, Transaction } from "@server/db";
import { invalidateStatusHistoryCache } from "@server/lib/statusHistory";

View File

@@ -1,5 +1,5 @@
import logger from "@server/logger";
import { processAlerts } from "@server/lib/alerts";
import { processAlerts } from "#dynamic/lib/alerts";
import {
db,
logsDb,

View File

@@ -1014,7 +1014,7 @@ function WebhookActionFields({
<Textarea
{...field}
placeholder={
'{{\n "event": "{{event}}",\n "timestamp": "{{timestamp}}",\n "status": "{{status}}",\n "data": {{data}}\n}}'
'{\n "event": "{{event}}",\n "timestamp": "{{timestamp}}",\n "status": "{{status}}",\n "data": {{data}}\n}'
}
className="font-mono text-xs min-h-45 resize-y"
/>