Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
a4b1369
WIP- analytics settings onboarding
ianmaccallum Oct 6, 2025
6df6f8b
Merge branch 'main' into analytics-onboarding
steven-tey Oct 6, 2025
addb753
Merge branch 'main' into analytics-onboarding
TWilson023 Oct 7, 2025
fcf6d44
WIP
TWilson023 Oct 7, 2025
031d636
Fix responsiveness
TWilson023 Oct 7, 2025
20c4a53
Text+link updates
TWilson023 Oct 7, 2025
9ee4c96
Merge branch 'main' into analytics-onboarding
steven-tey Oct 8, 2025
4168607
WIP scraping
TWilson023 Oct 8, 2025
81ec9c7
Merge branch 'analytics-onboarding' of github.com:dubinc/dub into ana…
TWilson023 Oct 8, 2025
efe2fd8
WIP
TWilson023 Oct 8, 2025
e7976ac
Persist selected guide to query params
TWilson023 Oct 8, 2025
e99c1c5
Disable some steps for Shopify
TWilson023 Oct 8, 2025
15ec792
Add code copy buttons
TWilson023 Oct 8, 2025
1e1b713
Hide site verification
TWilson023 Oct 8, 2025
4ed3ebd
Dynamic scripts
TWilson023 Oct 8, 2025
6ead235
WIP site visit tracking
TWilson023 Oct 8, 2025
df06fc0
Merge branch 'main' into analytics-onboarding
TWilson023 Oct 8, 2025
6f42071
Add outbound domains to scripts
TWilson023 Oct 8, 2025
bd59d85
Merge branch 'main' into analytics-onboarding
steven-tey Oct 8, 2025
9899cb1
Merge branch 'main' into analytics-onboarding
steven-tey Oct 8, 2025
5369458
Misc. tweaks
TWilson023 Oct 8, 2025
dfc66bb
Merge branch 'analytics-onboarding' of github.com:dubinc/dub into ana…
TWilson023 Oct 8, 2025
d263392
Add publishable key to scripts
TWilson023 Oct 8, 2025
ceeff35
Restore text fetcher
TWilson023 Oct 8, 2025
e4ab246
Update text-fetcher.ts
TWilson023 Oct 8, 2025
c4d3d25
Update use-dynamic-guide.ts
TWilson023 Oct 8, 2025
9afac58
disable conversion tracking when publishableKey enabled
steven-tey Oct 8, 2025
7946a19
update settings
steven-tey Oct 8, 2025
5d8ee28
add redirects, remove from onboarding
steven-tey Oct 8, 2025
4d2e086
fix step counts
steven-tey Oct 9, 2025
eb450c6
small nits
steven-tey Oct 9, 2025
d614736
Merge branch 'main' into analytics-onboarding
steven-tey Oct 9, 2025
6a8ff00
Merge branch 'main' into analytics-onboarding
steven-tey Oct 9, 2025
a3838a5
add redirects
steven-tey Oct 9, 2025
06f1a62
update more settings pages to use new layout
steven-tey Oct 9, 2025
e35c2aa
update workspace level conversion tracking
steven-tey Oct 9, 2025
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

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function Form() {

const { executeAsync, isPending } = useAction(onboardProgramAction, {
onSuccess: () => {
router.push(`/${workspaceSlug}/program/new/connect`);
router.push(`/${workspaceSlug}/program/new/overview`);
mutate();
},
onError: ({ error }) => {
Expand Down
4 changes: 2 additions & 2 deletions apps/web/app/(ee)/app.dub.co/(new-program)/steps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function ProgramOnboardingSteps() {
"bg-neutral-200 text-neutral-500",
)}
>
{stepNumber === 6 ? (
{stepNumber === 5 ? (
<Lock className="size-3" />
) : (
stepNumber
Expand Down Expand Up @@ -123,7 +123,7 @@ export function ProgramOnboardingSteps() {
"border border-neutral-200 text-neutral-500",
)}
>
{stepNumber === 6 ? (
{stepNumber === 5 ? (
<Lock className="size-3" />
) : completed ? (
<Check className="size-3" />
Expand Down
11 changes: 11 additions & 0 deletions apps/web/app/api/docs/guides/[guide]/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { withSession } from "@/lib/auth";
import { getIntegrationGuideMarkdown } from "@/lib/get-integration-guide-markdown";

// GET /api/docs/guides/[guide] - get doc guide markdown
export const GET = withSession(async ({ params }) => {
const { guide } = params;

const markdown = await getIntegrationGuideMarkdown(guide);

return new Response(markdown);
});

This file was deleted.

This file was deleted.

This file was deleted.

Loading