Skip to content

Commit f939a57

Browse files
authored
missing semi-colon that parcel upgrade and docs-differ revealed (#2705)
1 parent 87960ad commit f939a57

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/@react-aria/ssr/docs/useIsSSR.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ import {useIsSSR} from '@react-aria/ssr';
5050
function MyComponent() {
5151
let isSSR = useIsSSR();
5252
return <span>{isSSR ? 'Server' : 'Client'}</span>;
53-
}
53+
};
5454
```

packages/@react-aria/utils/docs/mergeProps.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ let merged = {
7373
a.onKeyDown(e);
7474
b.onKeyDown(e);
7575
}
76-
}
76+
};
7777
```

0 commit comments

Comments
 (0)