Henry Aviles
Henry Aviles
I'm getting the same issue after setting up vite-pwa on a Vue application. Removing the file provided by @renzho7 fixed it on the GUI, but it still failed headlessly.. currently...
I think it might be better to use display properties, unless the directive is a v-show. v-if = completely removed from dom (display properties) v-show = still in dom but...
This still needs a bunch of testing and a database migration, but I got a good start on the backend changes.
``` alter table "match" add column "new_startTime" timestamptz, add column "new_endTime" timestamptz; update "match" set "new_startTime" = to_timestamp("startTime"/1000.0), "new_endTime" = to_timestamp("endTime"/1000.0); alter table "match" drop column "startTime", drop column "endTime";...
apparently you can't use one `ALTER` for multiple renames ``` alter table "season" add column "newStartTime" timestamptz, add column "newEndTime" timestamptz; update "season" set "newStartTime" = to_timestamp("startTime"/1000.0), "newEndTime" = to_timestamp("endTime"...
I tested this by staging the database on `main` locally and ran the first test in `stats.spec.js` to populate the database, I then ran the above migration on the `match`...
So, after looking at the your code and noticing you added the `?` to make the param optional it made me think that maybe we shouldn't redirect to the home...
> >This way the end user has an explicit error message stating what's going on, instead of just a redirect which could potentially confuse them. > > @Haviles04 > >...
@itsalaidbacklife @Posoroko I think the ? On the gameID is enough actually.. it'll load gameView but the store won't have an id which will trigger the dialog
> I am trying to create a pr, but this is coming > At least 1 approving review is required by reviewers with write access. > @seriouslysean can u help...