fix(core): Refer to data table in error message (no-changelog) (#18971)

This commit is contained in:
Charlie Kolb
2025-08-29 15:54:19 +02:00
committed by GitHub
parent 0d1a0b5431
commit be76b3a510

View File

@@ -2,7 +2,7 @@ import { UserError } from 'n8n-workflow';
export class DataStoreNotFoundError extends UserError {
constructor(dataStoreId: string) {
super(`Could not find the data store: '${dataStoreId}'`, {
super(`Could not find the data table: '${dataStoreId}'`, {
level: 'warning',
});
}