Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: fixed incorrect wording for default input errors
  • Loading branch information
bradleyplaydon committed Sep 17, 2025
commit 166aefa5b45411729e8e60d0af732c1cd5f2178c
4 changes: 2 additions & 2 deletions src/config/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ export const validateDefaults = (
);
if (!token) {
error(
`Invalid token "${defaults.source?.token}" specified for defaultInputs.fromToken`,
`Invalid token "${defaults.source?.token}" specified for defaultInputs.source.token`,
);
delete defaults.source.token;
}
Expand All @@ -203,7 +203,7 @@ export const validateDefaults = (
);
if (!token) {
error(
`Invalid token "${defaults.destination?.token}" specified for defaultInputs.toToken`,
`Invalid token "${defaults.destination?.token}" specified for defaultInputs.destination.token`,
);
delete defaults.destination.token;
}
Expand Down
Loading