Which product are you using?
PDF.js Express Plus
PDF.js Express Version
I version | ‘10.8.0’ |
---|---|
Core version | ‘10.8.0’ |
webviewer.min.js | ‘10.8.0’ |
Build | ‘My8yMC8yMDI0fDM1YTk3ZjBhNw==’ |
Detailed description of issue
We are getting trial version with the paid key. We see errors of expired trial or watermarks of apryse,
Expected behaviour
we would expect the rendered pdf and no watermark or error
Does your issue happen with every document, or just one?
Every doc and to all users
Link to document
Document is not disclosed.
Code snippet
const createInstance = () => {
return new Promise((resolve) => {
WebViewer(
{
path: ‘/webviewer’,
licenseKey: ‘<key_removed>’,
initialDoc,
},
view.value as HTMLElement,
).then((i) => {
instance.value = i
resolve(i)
})
})
}