Skip to content
Open
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 src/components/JoinTeam.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const JoinTeam = () => {
{domains.map((domain) => (
<span
key={domain}
className="px-3 py-1 bg-white text-black rounded-full text-[9px] md:text-sm hover:scale-105 transition-transform duration-200 cursor-pointer"
className="px-2 py-1 bg-white text-black rounded-full text-[9px] md:text-sm hover:scale-105 transition-transform duration-200 cursor-pointer"
onClick={() =>
setPublicTeams(
allTeams.filter(team => team.domain?.trim().toLowerCase() === domain.trim().toLowerCase())
Expand All @@ -200,7 +200,7 @@ const JoinTeam = () => {
{domain.charAt(0).toUpperCase() + domain.slice(1)}
</span>
))} <span
className="px-3 py-1 bg-white text-black rounded-full text-[9px] md:text-sm cursor-pointer"
className="px-2 py-1 bg-white text-black rounded-full text-[9px] md:text-sm cursor-pointer"
onClick={() => setPublicTeams(allTeams)}
>
All
Expand Down