Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions moon/apps/web/components/CodeView/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { CommonResultVecTreeCommitItem } from '@gitmono/types/generated'
import { useGetBlob } from '@/hooks/useGetBlob'
import { useGetTreeCommitInfo } from '@/hooks/useGetTreeCommitInfo'

import CodeViewHeader from './CodeViewHeader'
// import CodeViewHeader from './CodeViewHeader'
import SpinnerTable from './TableWithLoading'

export default function CodeView() {
Expand All @@ -22,7 +22,7 @@ export default function CodeView() {
// return <SpinnerTable isLoading={!TreeCommitInfo} datasource={directory} content={readmeContent?.data} />
return (
<>
<CodeViewHeader />
{/*<CodeViewHeader />*/}
<SpinnerTable isLoading={!TreeCommitInfo} datasource={directory} content={readmeContent?.data} />
Comment on lines 23 to 26

Copilot AI Feb 10, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

CodeViewHeader is disabled via commented-out JSX. Prefer removing the element (and import) entirely, or gate it behind an explicit flag, rather than leaving commented code in the render path.

Copilot uses AI. Check for mistakes.
</>
)
Expand Down
4 changes: 2 additions & 2 deletions moon/apps/web/components/MyWork/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { NewPostButton } from '@/components/Home/NewPostButton'
import { IndexPageContainer, IndexPageContent } from '@/components/IndexPages/components'
import { RefetchingPageIndicator } from '@/components/NavigationBar/RefetchingPageIndicator'
import { refetchingPostsAtom } from '@/components/NavigationBar/useNavigationTabAction'
import { UserFeedOnboarding } from '@/components/Onboarding/UserFeedOnboarding'
// import { UserFeedOnboarding } from '@/components/Onboarding/UserFeedOnboarding'
import { PostsIndexDisplayDropdown } from '@/components/PostsIndex/PostsIndexDisplayDropdown'
import { SplitViewContainer, SplitViewDetail } from '@/components/SplitView'
import { useScope } from '@/contexts/scope'
Expand Down Expand Up @@ -44,7 +44,7 @@ function MyWorkPosts() {
return (
<>
<div className='hidden lg:flex lg:flex-col'>
<UserFeedOnboarding />
{/*<UserFeedOnboarding />*/}
<EnablePush containerClassName='p-4' />
Comment on lines 46 to 48

Copilot AI Feb 10, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

UserFeedOnboarding is only commented out here. Prefer removing the JSX (and the import) instead of leaving commented-out UI code behind.

Copilot uses AI. Check for mistakes.
</div>

Expand Down
55 changes: 33 additions & 22 deletions moon/apps/web/components/Sidebar/SidebarOrgSwitcher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@ import { useRouter } from 'next/router'
import { isMacOs } from 'react-device-detect'

import { PublicOrganization } from '@gitmono/types'
import { Avatar, LayeredHotkeys, Link, PlusIcon, Tooltip } from '@gitmono/ui'
import {
Avatar,
LayeredHotkeys,
Link,
MegaLogoIcon

Copilot AI Feb 10, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The named import list is currently invalid TypeScript/JS syntax: MegaLogoIcon is missing a trailing comma before the commented-out items, which will break the build. Add the comma (or fully remove the commented imports) so the import block parses correctly.

Suggested change
MegaLogoIcon
MegaLogoIcon,

Copilot uses AI. Check for mistakes.
// PlusIcon,
// Tooltip
} from '@gitmono/ui'
import { useIsDesktopApp } from '@gitmono/ui/src/hooks'
import { cn } from '@gitmono/ui/src/utils'

Expand Down Expand Up @@ -72,20 +79,20 @@ export function SidebarOrgSwitcher() {
<OrgSidebarItem organization={organization} index={index} isDragging={draggingId === id} />
</Reorder.Item>
))}
<Tooltip label='New organization' side='right'>
<span>
<Link
draggable={false}
className={cn(
'group relative flex h-6 w-6 items-center justify-center gap-2 rounded-[5px] bg-black/10 ring-offset-2 ring-offset-gray-50 hover:bg-black/15 focus:ring-black/20 dark:bg-white/10 dark:ring-offset-gray-900 dark:hover:bg-white/20 dark:focus:ring-white/50',
{}
)}
href={`/new`}
>
<PlusIcon className='opacity-50 group-hover:opacity-100' size={18} strokeWidth='2' />
</Link>
</span>
</Tooltip>
{/*<Tooltip label='New organization' side='right'>*/}
{/* <span>*/}
{/* <Link*/}
{/* draggable={false}*/}
{/* className={cn(*/}
Comment on lines +82 to +86

Copilot AI Feb 10, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The "New organization" control is currently disabled by commenting out the JSX block. Prefer removing the block (and related imports) or guarding it behind a feature flag so the intent is explicit and the component stays readable.

Copilot uses AI. Check for mistakes.
{/* 'group relative flex h-6 w-6 items-center justify-center gap-2 rounded-[5px] bg-black/10 ring-offset-2 ring-offset-gray-50 hover:bg-black/15 focus:ring-black/20 dark:bg-white/10 dark:ring-offset-gray-900 dark:hover:bg-white/20 dark:focus:ring-white/50',*/}
{/* {}*/}
{/* )}*/}
{/* href={`/new`}*/}
{/* >*/}
{/* <PlusIcon className='opacity-50 group-hover:opacity-100' size={18} strokeWidth='2' />*/}
{/* </Link>*/}
{/* </span>*/}
{/*</Tooltip>*/}
</Reorder.Group>
</div>
</div>
Expand Down Expand Up @@ -141,13 +148,17 @@ function OrgSidebarItem({
href={`/${organization?.slug}`}
draggable={false}
>
<Avatar
rounded='rounded-[5px]'
key={organization?.id}
size='sm'
name={organization?.name}
urls={organization?.avatar_urls}
/>
{organization?.name === 'Mega' ? (
<MegaLogoIcon size={24} />
) : (
<Avatar
rounded='rounded-[5px]'
key={organization?.id}
size='sm'
name={organization?.name}
urls={organization?.avatar_urls}
/>
)}

{showUnread && (
<div
Expand Down
4 changes: 2 additions & 2 deletions moon/apps/web/pages/[org]/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { HomeSpaces } from '@/components/MobileHome/HomeSpaces'
import { UnreadHomeSpaces } from '@/components/MobileHome/UnreadHomeSpaces'
import { refetchingHomeAtom } from '@/components/NavigationBar'
import { RefetchingPageIndicator } from '@/components/NavigationBar/RefetchingPageIndicator'
import { UserFeedOnboarding } from '@/components/Onboarding/UserFeedOnboarding'
// import { UserFeedOnboarding } from '@/components/Onboarding/UserFeedOnboarding'
import AuthAppProviders from '@/components/Providers/AuthAppProviders'
import { ScrollableContainer } from '@/components/ScrollableContainer'
import { CallBreadcrumbIcon, NoteBreadcrumbIcon, PostBreadcrumbIcon } from '@/components/Titlebar/BreadcrumbPageIcons'
Expand Down Expand Up @@ -59,7 +59,7 @@ const MyWorkHomePage: PageWithLayout<any> = () => {

<ScrollableContainer id='/[org]/home' className='pb-20'>
<div className='flex flex-col lg:hidden'>
<UserFeedOnboarding />
{/*<UserFeedOnboarding />*/}
<EnablePush containerClassName='p-4' />
Comment on lines 61 to 63

Copilot AI Feb 10, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description says UserFeedOnboarding is removed, but it’s currently left as commented-out JSX. Prefer deleting the node entirely (and the import) to avoid leaving dead UI code in the page.

Copilot uses AI. Check for mistakes.
</div>
<RefetchingPageIndicator isRefetching={isRefetching} />
Expand Down
Binary file modified moon/apps/web/public/favicon-badged.ico
Binary file not shown.
Binary file modified moon/apps/web/public/favicon.ico
Binary file not shown.
177 changes: 21 additions & 156 deletions moon/apps/web/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified moon/apps/web/public/meta/apple-touch-icon-120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified moon/apps/web/public/meta/apple-touch-icon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified moon/apps/web/public/meta/apple-touch-icon-180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified moon/apps/web/public/meta/apple-touch-icon-192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified moon/apps/web/public/meta/apple-touch-icon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified moon/apps/web/public/meta/apple-touch-icon-dev.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified moon/apps/web/public/meta/apple-touch-icon-ngrok.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified moon/apps/web/public/meta/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file modified moon/apps/web/public/meta/maskable-apple-touch-icon-dev.png
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Binary file modified moon/apps/web/public/meta/maskable-apple-touch-icon-ngrok.png
Binary file modified moon/apps/web/public/meta/maskable-apple-touch-icon.png