Skip to content

Commit

Permalink
config
Browse files Browse the repository at this point in the history
  • Loading branch information
armintalaie committed Aug 26, 2024
1 parent c5aa9dc commit 84250e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
webpack(config) {
// Grab the existing rule that handles SVG imports
const fileLoaderRule = config.module.rules.find((rule) =>
Expand Down
2 changes: 1 addition & 1 deletion src/app/portal/admin/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export async function getSubmissions(formId: number) {
});
console.log(app);

return app.map((submission) => {
return app.map((submission: any) => {
const details = submission.details ? (submission.details as any) : {};
return {
...submission,
Expand Down

0 comments on commit 84250e3

Please sign in to comment.