Skip to content

Commit

Permalink
typos in publish_packages workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0div committed Nov 26, 2024
1 parent a52e7a7 commit 3801df3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_packages.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test JS SDK
name: Publish Packages

on:
workflow_call:
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions apps/web/src/components/MobileBurgerMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
import { create } from 'zustand'

import { Header } from '@/components/Header'
import { DocsNavigation } from '@/components/Navigation'
import { DocsNavigation, SdkRefNavigation } from '@/components/Navigation'

function MenuIcon(props: React.ComponentPropsWithoutRef<'svg'>) {
return (
Expand Down Expand Up @@ -57,6 +57,7 @@ function MobileNavigationDialog({
const searchParams = useSearchParams()
const initialPathname = useRef(pathname).current
const initialSearchParams = useRef(searchParams).current
const isApiRef = pathname?.startsWith('/docs/sdk-reference')

useEffect(() => {
if (pathname !== initialPathname || searchParams !== initialSearchParams) {
Expand Down Expand Up @@ -124,7 +125,7 @@ function MobileNavigationDialog({
layoutScroll
className="fixed bottom-0 left-0 top-14 w-full overflow-y-auto overflow-x-hidden bg-white px-4 pb-4 pt-6 shadow-lg shadow-zinc-900/10 ring-1 ring-zinc-900/7.5 dark:bg-zinc-900 dark:ring-zinc-800 min-[416px]:max-w-sm sm:px-6 sm:pb-10"
>
<DocsNavigation />
{isApiRef ? <SdkRefNavigation /> : <DocsNavigation />}
</motion.div>
</Transition.Child>
</Dialog.Panel>
Expand Down

0 comments on commit 3801df3

Please sign in to comment.