Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
add approx symbol
  • Loading branch information
jpan8866 committed Oct 15, 2024
commit eb20a627b0ec9a9e8a23e6d1a434e0182ece030e
6 changes: 3 additions & 3 deletions components/topup-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ import { useUser } from "@/hooks/useUser";
const REQUEST_OPTIONS = [
{
amount: 5,
requests: 233,
requests: 200,
popular: false,
icon: MessageSquare,
feature: "Basic",
},
{
amount: 10,
requests: 466,
requests: 400,
popular: false,
icon: Sparkles,
feature: "Standard",
Expand Down Expand Up @@ -111,7 +111,7 @@ export default function TopUpModal() {
</p>
<div className="mt-1 flex items-center">
<p className="text-sm text-gray-700 dark:text-gray-600">
{option.requests} requests
{option.requests} requests
</p>
<TooltipProvider delayDuration={0}>
<Tooltip>
Expand Down