File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ import { Link } from '@tanstack/react-router'
22
33const 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' } ,
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ const librariesRouteApi = getRouteApi('/_libraries')
3636const library = getLibrary ( 'query' )
3737
3838export default function VersionIndex ( ) {
39- console . log ( 'library' , library )
4039 const { sponsorsPromise } = librariesRouteApi . useLoaderData ( )
4140 const { version } = Route . useParams ( )
4241 const branch = getBranch ( queryProject , version )
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import { getSponsorsForSponsorPack } from '~/server/sponsors'
2020import { libraries } from '~/libraries'
2121import { Scarf } from '~/components/Scarf'
2222import { ThemeToggle } from '~/components/ThemeToggle'
23- import { TbBrandBluesky , TbBrandTwitter } from 'react-icons/tb'
23+ import { TbBrandBluesky , TbBrandX } from 'react-icons/tb'
2424import { BiSolidCheckShield } from 'react-icons/bi'
2525import { SearchButton } from '~/components/SearchButton'
2626import {
@@ -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"
Original file line number Diff line number Diff line change 11import * as React from 'react'
22
3- import { FaBook , FaGithub , FaTwitter } from 'react-icons/fa'
3+ import { FaBook , FaGithub } from 'react-icons/fa'
4+
45import { Link , getRouteApi } from '@tanstack/react-router'
56import { Footer } from '~/components/Footer'
67import { SponsorsSection } from '~/components/SponsorsSection'
@@ -14,6 +15,7 @@ import { LibraryFeatureHighlights } from '~/components/LibraryFeatureHighlights'
1415import LandingPageGad from '~/components/LandingPageGad'
1516import { PartnersSection } from '~/components/PartnersSection'
1617import OpenSourceStats from '~/components/OpenSourceStats'
18+ import { TbBrandX } from 'react-icons/tb'
1719
1820export 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 >
You can’t perform that action at this time.
0 commit comments