Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Commit

Permalink
fix: decrease debounce to 500ms
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegYurchik committed Apr 12, 2024
1 parent a649d35 commit e5e635f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ COPY ./.yarn /app/.yarn
COPY ./.yarnrc.yml /app/.yarnrc.yml
RUN yarn --immutable

COPY ./public /app/public
COPY ./src /app/src
COPY ./index.html /app/index.html
COPY ./vite.config.ts /app/vite.config.ts

FROM core as build

ARG API_BASE_URL
ENV VITE_API_BASE_URL=${API_BASE_URL}

COPY ./public /app/public
COPY ./index.html /app/index.html
COPY ./vite.config.ts /app/vite.config.ts
RUN yarn build

FROM core as full
Expand Down
2 changes: 1 addition & 1 deletion src/shared/lib/const.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const TIME = {
DEBOUNCE: 1000,
DEBOUNCE: 500,
};

0 comments on commit e5e635f

Please sign in to comment.