Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rufusfavour authored Feb 4, 2025
2 parents 44390ea + 368aa53 commit e296743
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/web/contexts/Analytics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import logEvent, {
ActionType,
AnalyticsEventImportance,
CCAEventData,
AnalyticsContext,
AnalyticsEventContext,
} from 'libs/base-ui/utils/logEvent';
import { ReactNode, createContext, useCallback, useContext, useMemo } from 'react';

Expand All @@ -30,7 +30,7 @@ export function useAnalytics() {

type AnalyticsProviderProps = {
children?: ReactNode;
context: AnalyticsContext;
context: string | AnalyticsEventContext;
};

export default function AnalyticsProvider({ children, context }: AnalyticsProviderProps) {
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/GetStarted/StartBuilding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default async function StartBuilding() {
/>
<ResourceCard
title="Gas Sponsorship"
description="Reduce costs and Sponsor Gas for you users, with the Coinbase Paymaster and Bundler"
description="Reduce costs and Sponsor Gas for your users, with the Coinbase Paymaster and Bundler"
href="https://www.coinbase.com/developer-platform/products/paymaster/?utm_source=dotorg&utm_medium=builderkit"
topLeft={<span className="font-mono">02</span>}
topRight={<Icon name="diagonalUpArrow" width="16px" height="16px" />}
Expand Down
2 changes: 1 addition & 1 deletion libs/base-ui/utils/logEvent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ type CCAEventData = {
message_id?: number;
response_helpful?: boolean;
address?: string;
context?: AnalyticsEventContext;
context?: string | AnalyticsEventContext;
userId?: string;
error?: string;
wallet_type?: string;
Expand Down

0 comments on commit e296743

Please sign in to comment.