Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Review fixes 1 #2

Merged
merged 21 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1788365
fix: screen reader warning in add key dialog
ytkimirti Nov 15, 2024
5534792
feat: improve height of the editor for list and set types
ytkimirti Nov 15, 2024
609a7e0
fix: cancel button getting read as form submit in key deletion dialog
ytkimirti Nov 15, 2024
46ec036
fix: broken toaster styles because it's outside the ups-db container
ytkimirti Nov 15, 2024
4c22d04
feat: update deletion alert dialog
ytkimirti Nov 15, 2024
9084928
fix: click propagation in item deletion when clicking trash icon
ytkimirti Nov 15, 2024
19cd96c
chore: remove NEXT_PUBLIC_ prefix from playground env keys
ytkimirti Nov 18, 2024
2adc34b
fix: deduplication and sorting error in keys pagination
ytkimirti Nov 18, 2024
fda140a
fix: cache not resetting when pagination was reset
ytkimirti Nov 18, 2024
3c54b42
fix: add linebreak to delete dialog
ytkimirti Nov 18, 2024
8ab9a0a
fix: performance issue when there are many keys caused by ItemContext…
ytkimirti Nov 18, 2024
815f08a
fix: performance issue when there are many items caused by ItemContex…
ytkimirti Nov 18, 2024
ec123cf
fix: spinner improvement
ytkimirti Nov 18, 2024
d3935eb
feat: add refetch button
ytkimirti Nov 18, 2024
233c061
fix: promises are not awaited in useAddKey
ytkimirti Nov 20, 2024
7a29b6d
chore: format
ytkimirti Nov 20, 2024
d8121eb
chore: change fmt script
ytkimirti Nov 20, 2024
a7e8c36
chore: remove pnpm for consistency with other packages
ytkimirti Nov 20, 2024
1d73608
chore: bump redis
ytkimirti Nov 20, 2024
09f37bd
fix: show loading only when keys are loading
ytkimirti Nov 20, 2024
29ad4cc
fix problem with keys pagination not reseting correctly on refetch
ytkimirti Nov 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
NEXT_PUBLIC_UPSTASH_REDIS_REST_URL=
NEXT_PUBLIC_UPSTASH_REDIS_REST_TOKEN=
UPSTASH_REDIS_REST_URL=
UPSTASH_REDIS_REST_TOKEN=
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pnpm lint-staged
bun run lint-staged
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"build": "tsup",
"dev": "vite",
"lint": "tsc && eslint",
"fmt": "prettier --write ."
"fmt": "prettier --write ./src"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
Expand All @@ -44,7 +44,7 @@
"@tabler/icons-react": "^3.19.0",
"@tanstack/react-query": "^5.32.0",
"@types/bytes": "^3.1.4",
"@upstash/redis": "^1.31.6",
"@upstash/redis": "^1.34.3",
"bytes": "^3.1.2",
"react-hook-form": "^7.53.0",
"react-resizable-panels": "^2.1.4",
Expand Down
Loading
Loading