Skip to content

Commit

Permalink
Fix type err
Browse files Browse the repository at this point in the history
  • Loading branch information
mitjapotocin committed Oct 20, 2023
1 parent e5ae256 commit 98aaee9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pages/training-inquiry/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,10 @@ export default function TrainingInquiry() {
setSuccess(false);
setError(false);

const searchParams = new URLSearchParams({ ...data, price: total });
const searchParams = new URLSearchParams({
...data,
price: total,
} as any);

try {
const response = await fetch(
Expand Down

0 comments on commit 98aaee9

Please sign in to comment.