dulimarta / spherical-easel

https://spherical-easel.vercel.app
Other
3 stars 7 forks source link

File ("hamburger") menu does not appear to function #63

Open gwhitney opened 1 year ago

gwhitney commented 1 year ago

I have tried (1) https://easelgeo.app/ and (2) https://spherical-easel.vercel.app/ and (3) cloning this git repository and running the app with npm run app:serve. In (1), there is a hamburger icon in the title bar, and clicking it makes it flash but otherwise nothing happens. In (2), there is no hamburger icon. In (3), I had many errors of the form error: [plugin: vite:dep-scan] Failed to resolve entry for package '@firebase/auth-types' (with various @firebase packages. When I removed all lines of the form "import {STUFF} from '@firebase/SUBPACKAGE'" then it would run, and there would be a hamburger icon in the title bar, but it would be non-functional in exactly the same way as (1). So in particular, I am not able to export drawings. Has this just not been implemented yet, or is there something else I could be doing to export drawings? Thanks.

dulimarta commented 4 months ago

Could you post a screenshot of the UI. I'm not sure if you have the latest version of the app. Our latest version (under the main branch) shows no hamburger menu on the title bar. Also we have replaced all our Firebase base import with the newer one, and no longer use

import {STUFF} from "@firebase/xxxx"

but we have migrated these imports to

import { STUFF } from "firebase/xxx"