mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Use a promise
This commit is contained in:
parent
82fdad3c80
commit
933fa9f142
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ export const shouldSynthesize = async (
|
|||
userId: string,
|
||||
page: Page
|
||||
): Promise<boolean> => {
|
||||
return false
|
||||
return Promise.resolve(false)
|
||||
// if (page.pageType === PageType.File || !page.content) {
|
||||
// // we don't synthesize files for now
|
||||
// return false
|
||||
|
|
|
|||
Loading…
Reference in a new issue