``` const StatusPicker = WebpackModules.getByProps('status', 'statusItem'); const SideBar = WebpackModules.getByProps('MenuItem'); const settingStore = WebpackModules.getByProps('ShowCurrentGame'); Patcher.before(SideBar, 'default', (_, args) => { if (args[0]?.navId != 'account') return args; const enabled = settingStore.ShowCurrentGame.getSetting(); const [{ children } ] = args; const switchAccount = children.find(c => c?.props?.children?.key == "switch-account"); if (!children.find(c => c?.props?.id == 'game-activity')) { children.splice(children.indexOf(switchAccount) + 1, 0, React.createElement(SideBar.MenuItem, { id: 'game-activity', keepItemStyles: true, action: () => { return settingStore.ShowCurrentGame.updateSetting(!settingStore.ShowCurrentGame.getSetting()); }, render: () => React.createElement('div', { className: StatusPicker.statusItem, 'aria-label': `${enabled ? 'Hide' : 'Show'} Game Activity` }, enabled ? disabledIcon('16', '16') : enabledIcon('16', '16'), React.createElement('div', { className: StatusPicker.status }, `${enabled ? 'Hide' : 'Show'} Game Activity`), React.createElement('div', { className: StatusPicker.description }, `${enabled ? 'Disable' : 'Enable'} displaying currently running game in your activity status.`)) })); } });```