Nicholas Chiang
Nicholas Chiang
Just FYI the ultimate goal here is to test each possible combination of the different filters (as defined in `FILTERS` and `SORTERS`) available in our app's [search screen](https://tutorbook.app/docs/module-@tutorbook_search-Search.html).
@yuchenshi That would be a useful (although not **exactly** what I'm asking for) feature; those "tests" would ensure that my `firestore.indexes.json` supported the "tested" queries. Just make sure that feature...
Oh, and @samtstern you should have this specification (that the Firestore emulator will execute **any query** even if there isn't an index to support it) added to the [differences between...
Just added it @STRML and it looks like the issue is still there:  You'll notice how the draggable keeps jumping a couple of pixels after dropping (there are some...
@STRML I also created a little repro of the same (or, at least, a similar) problem I was having when dynamically resizing the grid snap and RND size. https://codesandbox.io/s/white-water-xrqp2?file=/src/index.js You'll...
@StefanoSega here's a very scrappy workaround: ```typescript // global.d.ts declare module 'react-scroll-sync' { import * as React from 'react'; export const ScrollSync: React.FC; export const ScrollSyncPane: React.FC; } ``` TSC...
@gajus that's exactly what I'm doing though. I use Prisma and define my ID columns there as `BigInts` and then use those Prisma Typescript types across my code base, ensuring...
I've created this repro using `[email protected]`: https://codesandbox.io/s/laughing-payne-dt1ty?file=/pages/_app.tsx ```tsx import { AppProps } from "next/app"; import { GoogleFonts } from "next-google-fonts"; import Head from "next/head"; import "./global.css"; const scriptThatAddsElToHead = `var...
Just a note that if this were possible (it isn't support by `path-to-regexp` yet), I think it would solve some issues (e.g. `/end` would redirect to `/en/end` properly): ```javascript >...
Looks like all I had to do was enable the (kind of hidden) `show-url` flag: ``` $ yarn release -u ``` And then open the authentication link in a tab...