refactor: strip Phase/Plan/R-number references from source comments
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// React Query option builders for blog feature procedures.
|
||||
// Consumed by apps via the @repo/core-trpc client (wired in Plan 5).
|
||||
// Consumed by apps via the @repo/core-trpc client.
|
||||
|
||||
type TrpcClient = {
|
||||
blog: {
|
||||
@@ -23,7 +23,12 @@ export function articleBySlugQuery(client: TrpcClient, slug: string) {
|
||||
|
||||
export function listArticlesQuery(
|
||||
client: TrpcClient,
|
||||
options?: { status?: string; authorId?: string; limit?: number; offset?: number },
|
||||
options?: {
|
||||
status?: string;
|
||||
authorId?: string;
|
||||
limit?: number;
|
||||
offset?: number;
|
||||
},
|
||||
) {
|
||||
return client.blog.listArticles.queryOptions(options);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user