Skip to content

Commit 21db015

Browse files
committed
fix: type fix
1 parent e91f361 commit 21db015

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ssr.spec.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ describe('SSR', () => {
5555
// This may affect ref call. Let's check this also.
5656
it('should not block ref', done => {
5757
const Demo = ({ open }: any = {}) => {
58-
const ref = React.useRef<HTMLDivElement>();
58+
const ref = React.useRef<HTMLDivElement>(null);
5959

6060
React.useEffect(() => {
6161
if (open) {

0 commit comments

Comments
 (0)