Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
devknoll committed Feb 15, 2022
1 parent 90bd65f commit 0c992a5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,8 @@ export default function Client() {
</ErrorBoundary>
)
}

export async function getServerSideProps() {
// disable exporting this page
return { props: {} }
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ export default function MultipleCalls() {
</>
)
}

export async function getServerSideProps() {
// disable exporting this page
return { props: {} }
}

0 comments on commit 0c992a5

Please sign in to comment.