Skip to content

Commit f0fdd72

Browse files
authored
nextjs: simplify check in useEffect (#3)
- Remove check for undefined - Change the cleanup function to not return anything (in-line with useEffect typing)
1 parent a894d15 commit f0fdd72

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

examples/nextjs/app/page.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,18 @@ export default function App() {
1212
useEffect(() => {
1313
const container = containerRef.current;
1414

15-
if (container && typeof PSPDFKit !== "undefined" && window.PSPDFKit) {
16-
const { PSPDFKit } = window;
17-
15+
const { PSPDFKit } = window;
16+
if (container && PSPDFKit) {
1817
PSPDFKit.load({
1918
container,
2019
document: "/example.pdf",
2120
baseUrl: `${window.location.protocol}//${window.location.host}/`,
2221
});
2322
}
2423

25-
return () => PSPDFKit?.unload(container);
24+
return () => {
25+
PSPDFKit?.unload(container);
26+
};
2627
}, []);
2728

2829
return (

0 commit comments

Comments
 (0)