Skip to content

Commit

Permalink
fix tooltip to weekly
Browse files Browse the repository at this point in the history
  • Loading branch information
kektobiologist committed Oct 23, 2024
1 parent fb58db0 commit 67f94ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/components/common/CreditsPill.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { Tag, TagLabel, TagLeftIcon, Tooltip } from '@chakra-ui/react'
import { IoDiamondOutline } from "react-icons/io5";

export default function CreditsPill({ credits }: { credits: number }) {
const labelText = `Daily credits. You use credits every time you send a message.
Upgrading increases the amount of credits every day.`
const labelText = `Weekly credits. You use credits every time you send a message.
Upgrading increases the amount of credits every week.`
return (
<Tooltip hasArrow label={labelText} placement='auto' borderRadius={5} openDelay={500}>
<Tag
Expand Down

0 comments on commit 67f94ad

Please sign in to comment.