Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
4acfe07
Design the phonebook
aequor-cntrl Apr 25, 2025
0b5cef1
Change axios integration (hopefully working)
aequor-cntrl Apr 25, 2025
d0d2fc8
Added dependencies to package.json
aequor-cntrl Apr 25, 2025
98a8c3e
Added dependencies to package.json
aequor-cntrl Apr 25, 2025
d4361fa
Added new dependencies to package-lock
aequor-cntrl Apr 25, 2025
497c426
Added dependencies to package.json
aequor-cntrl Apr 25, 2025
d8cb5db
Change axios URL and fix the dimming screen
aequor-cntrl Apr 27, 2025
b1809f7
Fix floating box and axios URL
aequor-cntrl Apr 27, 2025
4320813
Correct the axios baseURL
aequor-cntrl Apr 27, 2025
7b1ef87
Change Edit/Delete buttons
aequor-cntrl Apr 28, 2025
f93e9af
Fix edit/delete button duplication
aequor-cntrl Apr 28, 2025
31ad718
Edit getAll method
aequor-cntrl Apr 28, 2025
cdc0a2c
Fix loading entries on start
aequor-cntrl Apr 29, 2025
dffdb9f
Add debug statement for EditDialog
aequor-cntrl Apr 29, 2025
007496f
Fix the editDialog component
aequor-cntrl Apr 29, 2025
7f9099c
Add more debug statements in EditDialog
aequor-cntrl Apr 29, 2025
354d324
Attempt fixing the edit bug
aequor-cntrl Apr 29, 2025
993f0d5
Attempt fixing the edit bug 1.1
aequor-cntrl Apr 29, 2025
48fe874
Try fixing the edit bug again
aequor-cntrl Apr 29, 2025
9ec7ba6
Fix the edit bug
aequor-cntrl Apr 29, 2025
fa7b29d
Fix edit bug
aequor-cntrl Apr 29, 2025
bca47e4
Delete console.log debug statements
aequor-cntrl Apr 29, 2025
5c87d31
Add error handling
aequor-cntrl Apr 29, 2025
bb90463
Change error handling protocol
aequor-cntrl Apr 29, 2025
047428a
Change error message location and some styling
aequor-cntrl Apr 29, 2025
12b8d53
Change colors, add animated error messages
aequor-cntrl Apr 29, 2025
fad714e
Change the name of the web page
aequor-cntrl Apr 29, 2025
7d0d104
Return the spacing and flex container for the entry cards
aequor-cntrl Apr 29, 2025
96160e3
Change the regular expression for phone numbers
aequor-cntrl Apr 29, 2025
b8e0be7
Add rudimentary searching
aequor-cntrl Apr 29, 2025
f213b39
Change the entry cards shown at start
aequor-cntrl Apr 29, 2025
0ad1256
Change filtering
aequor-cntrl Apr 29, 2025
f8247d0
Change filtering
aequor-cntrl Apr 29, 2025
8e52407
Add debug statement
aequor-cntrl Apr 29, 2025
bb19f6e
Fix filtering again
aequor-cntrl Apr 29, 2025
4d3104f
Debug entry loading
aequor-cntrl Apr 29, 2025
33155cb
Add final filtering version
aequor-cntrl Apr 29, 2025
e9b684a
Add theme changer and delete debug statements
aequor-cntrl Apr 29, 2025
690050b
Changed color palette and added theme button
aequor-cntrl Apr 29, 2025
cb63d2d
Change filtering
aequor-cntrl Apr 29, 2025
ffe05be
Update README.md
aequor-cntrl Apr 30, 2025
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 app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>Phonebook</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
</html>
Loading