Stuart Tett

Results 41 comments of Stuart Tett
trafficstars

I've tried to make the same changes in my own project as seen here to see how it would work. Unfortunately, I've gotten some errors that seem to have to...

@glasser: This is my `next.config.js`: ```js webpack: (config, { isServer }) => { config.experiments = { topLevelAwait: true, }; if (!isServer) { config.resolve.fallback.fs = false; } return config; }, ```...

I've provided a repro [here on codesandbox.io](https://codesandbox.io/s/vue-smooth-reflow-wg2q3?expanddevtools=1&fontsize=14&module=%2Fsrc%2Fcomponents%2FHelloWorld.vue). Ignore the error (`this.$smoothReflow is not a function`). I can't figure out why both codesandbox and jsfiddle give me that even though I...

Because I'm not getting that error in my actual project. I was just getting it on codesandbox. I have it spelled "mixins" plural in my actual project and it does...

@bridger What did you end up doing? With my custom error class I have an enum `MyServiceError` which for each error has an associated description and status error code. But...

As I play with 2.0, I'm seeing a limitation with codables. If I want to return a custom object in the case of an error. Rather than returning `MyCodable`, I'd...

@roni-frantchi When I use `lerna exec 'yarn test --passWithNoTests --watch' --parallel --no-bail` I get: ``` lerna Unknown arguments: testLocationInResults, json, useStderr, outputFile, watch, coverage, color, reporters ```

@rubanraj54 Your way would work. I had in mind something slightly different than a pop up modal. I was thinking more inline. Like the first or last row would have...

@calspre I think you actually do need to use `firebase-admin`. Because in order to make authenticated requests to firestore for example, you need to `verifyIdToken` due to the nature of...

@jensmeindertsma the only thing is that the token occasionally expires (1 hr or so). The client can get the new token and then update the session with that new token....