diff --git a/ui/apps/dashboard/src/app/(organization-active)/(dashboard)/env/[environmentSlug]/apps/page.tsx b/ui/apps/dashboard/src/app/(organization-active)/(dashboard)/env/[environmentSlug]/apps/page.tsx index 03714d9ed6..da3f1a3204 100644 --- a/ui/apps/dashboard/src/app/(organization-active)/(dashboard)/env/[environmentSlug]/apps/page.tsx +++ b/ui/apps/dashboard/src/app/(organization-active)/(dashboard)/env/[environmentSlug]/apps/page.tsx @@ -6,10 +6,8 @@ import { InformationCircleIcon, PlusIcon, Squares2X2Icon } from '@heroicons/reac import { Button } from '@inngest/components/Button'; import { HoverCardContent, HoverCardRoot, HoverCardTrigger } from '@inngest/components/HoverCard'; import { Link } from '@inngest/components/Link'; -import { useLocalStorage } from 'react-use'; import { useEnvironment } from '@/app/(organization-active)/(dashboard)/env/[environmentSlug]/environment-context'; -import { Banner } from '@/components/Banner'; import Header, { type HeaderLink } from '@/components/Header/Header'; import { pathCreator } from '@/utils/urls'; import { useBooleanSearchParam } from '@/utils/useSearchParam'; @@ -18,10 +16,6 @@ import { Apps } from './Apps'; export default function Page() { const env = useEnvironment(); const router = useRouter(); - const [isAppsBannerVisible, setIsAppsBannerVisible] = useLocalStorage( - 'AppsLaunchBannerVisible', - true - ); const [isArchived] = useBooleanSearchParam('archived'); @@ -78,8 +72,6 @@ export default function Page() { automatically.


-

Deploys have been renamed to “Syncs.” Syncs are found within Apps.

-
Read Docs @@ -87,28 +79,6 @@ export default function Page() { } />
- {isAppsBannerVisible && ( - { - setIsAppsBannerVisible(false); - }} - className="absolute" - > -

- Inngest deploys have been renamed to “Syncs”. All of your syncs can be found - within your apps.{' '} - - Learn More - -

-
- )} -
diff --git a/ui/apps/dashboard/src/app/(organization-active)/(dashboard)/env/[environmentSlug]/functions/[slug]/layout.tsx b/ui/apps/dashboard/src/app/(organization-active)/(dashboard)/env/[environmentSlug]/functions/[slug]/layout.tsx index 86d054e1e3..d26caffcbb 100644 --- a/ui/apps/dashboard/src/app/(organization-active)/(dashboard)/env/[environmentSlug]/functions/[slug]/layout.tsx +++ b/ui/apps/dashboard/src/app/(organization-active)/(dashboard)/env/[environmentSlug]/functions/[slug]/layout.tsx @@ -7,7 +7,6 @@ import { InvokeButton } from '@inngest/components/InvokeButton'; import { useMutation } from 'urql'; import { useEnvironment } from '@/app/(organization-active)/(dashboard)/env/[environmentSlug]/environment-context'; -import { useBooleanFlag } from '@/components/FeatureFlags/hooks'; import Header, { type HeaderLink } from '@/components/Header/Header'; import { graphql } from '@/gql'; import { useFunction } from '@/queries'; @@ -38,8 +37,6 @@ export default function FunctionLayout({ children, params }: FunctionLayoutProps const { isArchived = false } = fn ?? {}; const isPaused = !isArchived && !data?.workspace.workflow?.current; - const isReplayEnabled = useBooleanFlag('function-replay'); - const emptyData = !data || fetching || !fn; const navLinks: HeaderLink[] = [ { @@ -51,19 +48,11 @@ export default function FunctionLayout({ children, params }: FunctionLayoutProps href: `/env/${params.environmentSlug}/functions/${params.slug}/logs`, text: 'Runs', }, - ]; - - if (isReplayEnabled.value) { - navLinks.push({ + { href: `/env/${params.environmentSlug}/functions/${params.slug}/replay`, text: 'Replay', - badge: ( - - New - - ), - }); - } + }, + ]; const doesFunctionAcceptPayload = fn?.current?.triggers.some((trigger) => { diff --git a/ui/apps/dashboard/src/components/Navigation/AppNavigation.tsx b/ui/apps/dashboard/src/components/Navigation/AppNavigation.tsx index 6e75389bc9..cd91ab0ca3 100644 --- a/ui/apps/dashboard/src/components/Navigation/AppNavigation.tsx +++ b/ui/apps/dashboard/src/components/Navigation/AppNavigation.tsx @@ -8,7 +8,6 @@ import { Squares2X2Icon, WrenchIcon, } from '@heroicons/react/20/solid'; -import { Badge } from '@inngest/components/Badge'; import { useBooleanFlag } from '@/components/FeatureFlags/hooks'; import OrganizationDropdown from '@/components/Navigation/OrganizationDropdown'; @@ -43,11 +42,6 @@ export default function AppNavigation({ environmentSlug }: AppNavigationProps) { text: 'Apps', hide: [ALL_ENVIRONMENTS_SLUG], icon: , - badge: ( - - New - - ), }, { href: `/env/${environmentSlug}/functions`,