Phase 5 cleanup

This commit is contained in:
Aerilyn Weber 2026-04-26 18:44:59 +09:00
parent 5536acd67d
commit 76a516a417
136 changed files with 6322 additions and 1985 deletions

View file

@ -49,16 +49,10 @@ export async function createRefillList(
householdId: string,
data: CreateRefillListInput,
): Promise<RefillListResponse> {
return apiClient.post<RefillListResponse>(
`/households/${householdId}/refills/lists`,
data,
);
return apiClient.post<RefillListResponse>(`/households/${householdId}/refills/lists`, data);
}
export async function getRefillList(
householdId: string,
id: string,
): Promise<RefillListResponse> {
export async function getRefillList(householdId: string, id: string): Promise<RefillListResponse> {
return apiClient.get<RefillListResponse>(`/households/${householdId}/refills/lists/${id}`);
}