Skip to content

Commit

Permalink
[Glitch] Fix incorrect proptypes from react-router-v5 update
Browse files Browse the repository at this point in the history
Port 0ad6617 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
  • Loading branch information
ClearlyClaire committed Oct 24, 2023
1 parent 9325cb5 commit 5323f0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/javascript/flavours/glitch/components/status.jsx
Expand Up @@ -14,7 +14,7 @@ import PollContainer from 'flavours/glitch/containers/poll_container';
import NotificationOverlayContainer from 'flavours/glitch/features/notifications/containers/overlay_container';
import { displayMedia } from 'flavours/glitch/initial_state';
import { autoUnfoldCW } from 'flavours/glitch/utils/content_warning';
import { withOptionalRouter, WithRouterPropTypes } from 'flavours/glitch/utils/react_router';
import { withOptionalRouter, WithOptionalRouterPropTypes } from 'flavours/glitch/utils/react_router';

import Card from '../features/status/components/card';
import Bundle from '../features/ui/components/bundle';
Expand Down Expand Up @@ -114,7 +114,7 @@ class Status extends ImmutablePureComponent {
inUse: PropTypes.bool,
available: PropTypes.bool,
}),
...WithRouterPropTypes,
...WithOptionalRouterPropTypes,
};

state = {
Expand Down
1 change: 1 addition & 0 deletions app/javascript/flavours/glitch/utils/react_router.jsx
Expand Up @@ -49,6 +49,7 @@ export function withOptionalRouter(Component) {
C.displayName = displayName;
C.WrappedComponent = Component;
C.propTypes = {
...Component.propTypes,
wrappedComponentRef: PropTypes.oneOfType([
PropTypes.string,
PropTypes.func,
Expand Down

0 comments on commit 5323f0e

Please sign in to comment.