Waseem Ahmed

Results 5 comments of Waseem Ahmed

@sgtraptor Add the following to your `next-env.d.ts` file ``` declare global { interface Window { [key:string]: any; } } ```

Here is a simple test to reproduce this bug ```ts import styled from "@emotion/styled"; import { render, screen } from "@testing-library/react"; import userEvent from "@testing-library/user-event"; const Container = styled("div")` position:...

@gnapse , thanks for your response! I have updated my example to use `visibility` property and also I confirm that styles are being loaded from emotion, because these two lines...