#2195·papermark

Title: Restore missing modules causing build failures

Author: mohit-bhandari45Created Aug 8, 2026Updated Sep 10, 2026

The app build is failing because several imported modules no longer exist at their expected paths. These are the missing imports I found while running npm run build and tracing the error chain:

  • @/ee/features/request-lists/lib/use-request-list-feature
  • @/ee/features/permissions/components/confidential-view/confidential-view-section
  • @/ee/features/permissions/components/confidential-view/confidential-view-overlay
  • @/ee/stripe/currency
  • @/ee/limits/can-create-premium-team
  • @/ee/limits/can-create-unlimited-team
  • @/ee/features/redaction/components/redaction-jobs-dialog
  • @/ee/features/redaction/components/redaction-config-dialog
  • @/lib/oauth/scopes
  • @/ee/features/branding/lib/brand-logo
  • @/ee/features/branding/lib/dataroom-banner

Impact:

  • next build fails with Module not found errors.
  • Several pages and components cannot compile because they depend on these missing modules.

Expected outcome:

  • Restore the missing modules or update imports to the new paths.
  • npm run build should complete without module-resolution errors.