mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-26 03:11:36 +01:00
435ff8e550
Port c73868cd78
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
14 lines
No EOL
571 B
JavaScript
14 lines
No EOL
571 B
JavaScript
import Notifications from 'flavours/glitch/features/notifications';
|
|
import Notifications_v2 from 'flavours/glitch/features/notifications_v2';
|
|
import { selectUseGroupedNotifications } from 'flavours/glitch/selectors/settings';
|
|
import { useAppSelector } from 'flavours/glitch/store';
|
|
|
|
export const NotificationsWrapper = (props) => {
|
|
const optedInGroupedNotifications = useAppSelector(selectUseGroupedNotifications);
|
|
|
|
return (
|
|
optedInGroupedNotifications ? <Notifications_v2 {...props} /> : <Notifications {...props} />
|
|
);
|
|
};
|
|
|
|
export default NotificationsWrapper; |