Skip to content

Commit

Permalink
fix: limit api
Browse files Browse the repository at this point in the history
  • Loading branch information
ialexanderbrito committed Apr 8, 2022
1 parent eb9a716 commit d133df2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/services/get/clientes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export async function getClientes(barberId: string, selectDayFormatted: string)
: `${selectDayFormatted}T00:00`,
p_dt_fim: selectDayFormatted === atualDayFormatted ? `${selectDayFormatted}T23:00` : `${selectDayFormatted}T23:59`,
p_page: 0,
p_limit: 10,
p_limit: 15,
p_orderby: 'hour',
p_ascordsc: 'asc',
});
Expand Down
4 changes: 2 additions & 2 deletions src/services/get/horarioMarcado.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export async function getHorarioMarcadoCliente(clientId: string, selectDayFormat
: `${selectDayFormatted}T00:00`,
p_dt_fim: `${selectDayFormatted}T23:59`,
p_page: 0,
p_limit: 10,
p_limit: 15,
p_orderby: 'hour',
p_ascordsc: 'asc',
});
Expand All @@ -32,7 +32,7 @@ export async function getHorarioSelecionado(clientId: string, selectDayFormatted
p_dt_inicio: `${selectDayFormatted}T${hour}`,
p_dt_fim: `${selectDayFormatted}T${hour}`,
p_page: 0,
p_limit: 10,
p_limit: 15,
p_orderby: 'hour',
p_ascordsc: 'asc',
});
Expand Down

0 comments on commit d133df2

Please sign in to comment.