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 package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlink",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"workspaces": [
"packages/*"
Expand Down
15 changes: 14 additions & 1 deletion src/app/providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,20 @@ export function Providers({ children }: { children: React.ReactNode }) {
return (
<WagmiProvider config={config}>
<QueryClientProvider client={queryClient}>
<RainbowKitProvider theme={plotlinkTheme} modalSize="compact">
<RainbowKitProvider
theme={plotlinkTheme}
modalSize="compact"
appInfo={{
appName: "PlotLink",
disclaimer: ({ Text, Link }) => (
<Text>
By connecting, you agree to our{" "}
<Link href="/terms">Terms</Link> and{" "}
<Link href="/privacy">Privacy Policy</Link>.
</Text>
),
}}
>
<Suspense fallback={null}>
<ReferralCapture />
</Suspense>
Expand Down
8 changes: 0 additions & 8 deletions src/components/ConnectWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,6 @@ export function ConnectWallet({ onNavigate, compact }: ConnectWalletProps = {})
>
{compact ? "Connect" : "connect wallet"}
</button>
{!compact && (
<p className="text-muted text-[9px] mt-1.5 text-center leading-relaxed">
By connecting, you agree to our{" "}
<Link href="/terms" className="text-accent hover:underline">Terms</Link>
{" "}and{" "}
<Link href="/privacy" className="text-accent hover:underline">Privacy Policy</Link>.
</p>
)}
</div>
);
}}
Expand Down
Loading