'Module not found: Error: Can't resolve '@gene/web-frontend-base/lib/...''

This message appears when custom UI code import through an explicit path instead of using the module path:

// Wrong Import
import { GeneContext } from '@gene/web-frontend-base/lib/generated/execution';

// Correct Import
import { GeneContext } from '@gene/web-frontend-base';