teo.villanueva
teo.villanueva
Explore posts from servers
RRailway
Created by teo.villanueva on 7/25/2024 in #✋|help
Sleep service without deleting
There will be no charges after this billing cycle right?
13 replies
RRailway
Created by teo.villanueva on 7/25/2024 in #✋|help
Sleep service without deleting
we plan on reviving the project in some months
13 replies
RRailway
Created by teo.villanueva on 7/25/2024 in #✋|help
Sleep service without deleting
I also cancelled the plan
13 replies
RRailway
Created by teo.villanueva on 7/25/2024 in #✋|help
Sleep service without deleting
Ok!
13 replies
RRailway
Created by teo.villanueva on 7/25/2024 in #✋|help
Sleep service without deleting
4e14568a-0201-404e-a2f6-c0df2270c0b5
13 replies
RRailway
Created by teo.villanueva on 4/19/2024 in #✋|help
I've updated my plan and my team shows up as no plan
Fixed!
14 replies
RRailway
Created by teo.villanueva on 4/19/2024 in #✋|help
I've updated my plan and my team shows up as no plan
it was previously in red
14 replies
RRailway
Created by teo.villanueva on 4/19/2024 in #✋|help
I've updated my plan and my team shows up as no plan
There we go
14 replies
RRailway
Created by teo.villanueva on 4/19/2024 in #✋|help
I've updated my plan and my team shows up as no plan
No description
14 replies
RRailway
Created by teo.villanueva on 4/19/2024 in #✋|help
I've updated my plan and my team shows up as no plan
No description
14 replies
RRailway
Created by teo.villanueva on 4/19/2024 in #✋|help
I've updated my plan and my team shows up as no plan
No description
14 replies
RRailway
Created by teo.villanueva on 4/19/2024 in #✋|help
I've updated my plan and my team shows up as no plan
No description
14 replies
RRailway
Created by teo.villanueva on 4/19/2024 in #✋|help
I've updated my plan and my team shows up as no plan
No description
14 replies
TtRPC
Created by teo.villanueva on 5/25/2023 in #❓-help
Trpc refetches all of the queries when i run a mutation
also, im not performing any manual invalidation
19 replies
TtRPC
Created by teo.villanueva on 5/25/2023 in #❓-help
Trpc refetches all of the queries when i run a mutation
I also have this deployed to vercel
19 replies
TtRPC
Created by teo.villanueva on 5/25/2023 in #❓-help
Trpc refetches all of the queries when i run a mutation
If you want I can give you access to the codebase
19 replies
TtRPC
Created by teo.villanueva on 5/25/2023 in #❓-help
Trpc refetches all of the queries when i run a mutation
just checked with the component profiler and it doesnt look like it is remounting
19 replies
TtRPC
Created by teo.villanueva on 5/25/2023 in #❓-help
Trpc refetches all of the queries when i run a mutation
import { AddProductButton } from '@/components/add-product-button';
import { AdminPageHeader } from '@/components/admin-page-header';
import { ProductsTable } from '@/components/products-table';
import { HydrateClient } from '@/lib/trpc/client/hydrate-client';
import { rsc } from '@/shared/server-rsc/trpc';

export const metadata = {
title: 'Products',
};

export default async function AdminShopProductsPage({
params,
}: {
params: { shopSlug: string };
}) {
await rsc.product.all.fetch({ shopSlug: params.shopSlug });

const dehydratedState = await rsc.dehydrate();

return (
<HydrateClient state={dehydratedState}>
<AdminPageHeader heading="Products" headingRight={<AddProductButton />} />
<ProductsTable />
</HydrateClient>
);
}
import { AddProductButton } from '@/components/add-product-button';
import { AdminPageHeader } from '@/components/admin-page-header';
import { ProductsTable } from '@/components/products-table';
import { HydrateClient } from '@/lib/trpc/client/hydrate-client';
import { rsc } from '@/shared/server-rsc/trpc';

export const metadata = {
title: 'Products',
};

export default async function AdminShopProductsPage({
params,
}: {
params: { shopSlug: string };
}) {
await rsc.product.all.fetch({ shopSlug: params.shopSlug });

const dehydratedState = await rsc.dehydrate();

return (
<HydrateClient state={dehydratedState}>
<AdminPageHeader heading="Products" headingRight={<AddProductButton />} />
<ProductsTable />
</HydrateClient>
);
}
19 replies
TtRPC
Created by teo.villanueva on 5/25/2023 in #❓-help
Trpc refetches all of the queries when i run a mutation
This is my products page
19 replies
TtRPC
Created by teo.villanueva on 5/25/2023 in #❓-help
Trpc refetches all of the queries when i run a mutation
Im using the app dir with react server components
19 replies