Sheldon Coates
Sheldon Coates
`index.ts` ``` import { onOpen, onInstall, openSidebar } from './ui' // Public functions must be exported as named exports export { onOpen, onInstall, openSidebar } ``` `ui.js` ``` export const...
This fixes it in `server/index.ts` ``` import * as UIFunctions from './ui' const { onOpen, onInstall, openSidebar } = UIFunctions export { onOpen, onInstall, openSidebar, } ``` not really sure...
Got another weird one for you... Can you try and install react-router-dom and see if it gives you an error? I can open another issue if you like for discussion...
By GAS dialogs do you mean just the dialog window **and** sidebar? or just the dialog?
Okay so after hours of debugging and constant white screens I was finally able to get everything working the way i want it. I have a few notes for anyone...
#295 have you read the other issues and tried this?