Skip to content

Commit 16bf411

Browse files
committed
twitter => x, no logs
1 parent 3689791 commit 16bf411

5 files changed

Lines changed: 9 additions & 12 deletions

File tree

convex/users.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ export const updateUserCapabilities = mutation({
2222

2323
let capabilities = args.capabilities
2424

25-
console.log('targetUser', targetUser)
26-
2725
// Ensure that tannerlinsley@gmail.com always has the admin capability
2826
// as a fail safe
2927
if (targetUser.email === 'tannerlinsley@gmail.com') {
@@ -32,8 +30,6 @@ export const updateUserCapabilities = mutation({
3230
]
3331
}
3432

35-
console.log(capabilities)
36-
3733
// Validate capabilities using schema helper
3834
const validatedCapabilities = CapabilitySchema.array().parse(capabilities)
3935

src/components/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ import { Link } from '@tanstack/react-router'
22

33
const footerLinks = [
44
{ label: 'Blog', to: '/blog' },
5-
{ label: '@Tan_Stack Twitter', to: 'https://twitter.com/tan_stack' },
5+
{ label: '@Tan_Stack on X.com', to: 'https://x.com/tan_stack' },
66
{
7-
label: '@TannerLinsley Twitter',
7+
label: '@TannerLinsley on X.com',
88
to: 'https://twitter.com/tannerlinsley',
99
},
1010
{ label: 'GitHub', to: 'https://github.com/tanstack' },

src/routes/_libraries/query.$version.index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ const librariesRouteApi = getRouteApi('/_libraries')
3636
const library = getLibrary('query')
3737

3838
export default function VersionIndex() {
39-
console.log('library', library)
4039
const { sponsorsPromise } = librariesRouteApi.useLoaderData()
4140
const { version } = Route.useParams()
4241
const branch = getBranch(queryProject, version)

src/routes/_libraries/route.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { getSponsorsForSponsorPack } from '~/server/sponsors'
2020
import { libraries } from '~/libraries'
2121
import { Scarf } from '~/components/Scarf'
2222
import { ThemeToggle } from '~/components/ThemeToggle'
23-
import { TbBrandBluesky, TbBrandTwitter } from 'react-icons/tb'
23+
import { TbBrandBluesky, TbBrandX } from 'react-icons/tb'
2424
import { BiSolidCheckShield } from 'react-icons/bi'
2525
import { SearchButton } from '~/components/SearchButton'
2626
import {
@@ -362,9 +362,9 @@ export function LibrariesLayout({ children }: { children: React.ReactNode }) {
362362
<a
363363
href="https://x.com/tan_stack"
364364
className="opacity-70 hover:opacity-100"
365-
aria-label="Follow TanStack on X (Twitter)"
365+
aria-label="Follow TanStack on X.com"
366366
>
367-
<TbBrandTwitter className="text-xl" />
367+
<TbBrandX className="text-xl" />
368368
</a>
369369
<a
370370
href="https://bsky.app/profile/tanstack.com"

src/routes/_libraries/start.$version.index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import * as React from 'react'
22

3-
import { FaBook, FaGithub, FaTwitter } from 'react-icons/fa'
3+
import { FaBook, FaGithub } from 'react-icons/fa'
4+
45
import { Link, getRouteApi } from '@tanstack/react-router'
56
import { Footer } from '~/components/Footer'
67
import { SponsorsSection } from '~/components/SponsorsSection'
@@ -14,6 +15,7 @@ import { LibraryFeatureHighlights } from '~/components/LibraryFeatureHighlights'
1415
import LandingPageGad from '~/components/LandingPageGad'
1516
import { PartnersSection } from '~/components/PartnersSection'
1617
import OpenSourceStats from '~/components/OpenSourceStats'
18+
import { TbBrandX } from 'react-icons/tb'
1719

1820
export const Route = createFileRoute({
1921
component: VersionIndex,
@@ -126,7 +128,7 @@ export default function VersionIndex() {
126128
className="flex items-center gap-2 py-2 px-4 bg-cyan-500 rounded text-white uppercase font-extrabold"
127129
rel="noreferrer"
128130
>
129-
<FaTwitter className="min-w-4" /> Tweet about it!
131+
<TbBrandX className="min-w-4" /> Tweet about it!
130132
</a>{' '}
131133
</div>
132134
</div>

0 commit comments

Comments
 (0)