-
Notifications
You must be signed in to change notification settings - Fork 553
Expand file tree
/
Copy pathissues.json
More file actions
7757 lines (7558 loc) · 837 KB
/
Copy pathissues.json
File metadata and controls
7757 lines (7558 loc) · 837 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1203",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1203/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1203/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1203/events",
"html_url": "https://github.com/aryandas2911/DailyForge/issues/1203",
"id": 4530768199,
"node_id": "I_kwDOQijnXs8AAAABDg4JRw",
"number": 1203,
"title": "Feature: Add Custom User Tags to Dashboard Hero Section",
"user": {
"login": "Mradul-0605",
"id": 216673040,
"node_id": "U_kgDODOorEA",
"avatar_url": "https://avatars.githubusercontent.com/u/216673040?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Mradul-0605",
"html_url": "https://github.com/Mradul-0605",
"followers_url": "https://api.github.com/users/Mradul-0605/followers",
"following_url": "https://api.github.com/users/Mradul-0605/following{/other_user}",
"gists_url": "https://api.github.com/users/Mradul-0605/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Mradul-0605/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Mradul-0605/subscriptions",
"organizations_url": "https://api.github.com/users/Mradul-0605/orgs",
"repos_url": "https://api.github.com/users/Mradul-0605/repos",
"events_url": "https://api.github.com/users/Mradul-0605/events{/privacy}",
"received_events_url": "https://api.github.com/users/Mradul-0605/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2026-05-27T08:21:04Z",
"updated_at": "2026-05-27T08:22:36Z",
"closed_at": null,
"assignee": null,
"author_association": "CONTRIBUTOR",
"active_lock_reason": null,
"sub_issues_summary": {
"total": 0,
"completed": 0,
"percent_completed": 0
},
"issue_dependencies_summary": {
"blocked_by": 0,
"total_blocked_by": 0,
"blocking": 0,
"total_blocking": 0
},
"body": "Description\n\nThe top dashboard section currently feels visually empty, especially in the center area below the greeting. Adding customizable profile tags/badges would make the UI more engaging and personalized.\n\nExample tags:\n\nTech Enthusiast\nSchool Student\nWeb Developer\nOpen Source Contributor\nDesigner\nRobotics Learner\n\nUsers should be able to:\n\nAdd custom tags\nEdit/remove tags\nDisplay multiple tags as pill badges under the greeting section\nWhy this feature?\nFills unused whitespace in the hero section\nImproves personalization\nMakes profiles feel more dynamic\nGives quick identity/context about the user\nSuggested UI\n\nPlace tags below:\n\nΓÇ£Win the morning, win the day.ΓÇ¥\n\nExample:\n[ Tech Enthusiast ] [ School Student ] [ React Learner ]\nPossible Enhancements\nTag color themes\nMax 4ΓÇô5 visible tags\nOptional icons inside tags\nDrag-and-reorder tags",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1203/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1203/timeline",
"performed_via_github_app": null,
"state_reason": null,
"pinned_comment": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1202",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1202/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1202/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1202/events",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1202",
"id": 4530543852,
"node_id": "PR_kwDOQijnXs7ful83",
"number": 1202,
"title": "Add forgot password and reset password workflow",
"user": {
"login": "parneetbrar234-svg",
"id": 226455749,
"node_id": "U_kgDODX9wxQ",
"avatar_url": "https://avatars.githubusercontent.com/u/226455749?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/parneetbrar234-svg",
"html_url": "https://github.com/parneetbrar234-svg",
"followers_url": "https://api.github.com/users/parneetbrar234-svg/followers",
"following_url": "https://api.github.com/users/parneetbrar234-svg/following{/other_user}",
"gists_url": "https://api.github.com/users/parneetbrar234-svg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/parneetbrar234-svg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/parneetbrar234-svg/subscriptions",
"organizations_url": "https://api.github.com/users/parneetbrar234-svg/orgs",
"repos_url": "https://api.github.com/users/parneetbrar234-svg/repos",
"events_url": "https://api.github.com/users/parneetbrar234-svg/events{/privacy}",
"received_events_url": "https://api.github.com/users/parneetbrar234-svg/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2026-05-27T07:45:07Z",
"updated_at": "2026-05-27T07:50:22Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"draft": false,
"pull_request": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/pulls/1202",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1202",
"diff_url": "https://github.com/aryandas2911/DailyForge/pull/1202.diff",
"patch_url": "https://github.com/aryandas2911/DailyForge/pull/1202.patch",
"merged_at": null
},
"body": " 📌 Description\r\nImplemented a complete forgot password and reset password workflow for the authentication system.\r\n\r\n 🔗 Related Issue\r\nCloses #1185 \r\n\r\n## 🛠 Changes Made\r\n\r\n- Added forgot-password backend endpoint\r\n- Added reset-password backend endpoint\r\n- Added reset password token and expiry fields in User model\r\n- Implemented secure password reset token generation\r\n- Added Forgot Password page in frontend\r\n- Added Reset Password page in frontend\r\n- Added forgot password navigation in Login page\r\n- Added password visibility toggle in Reset Password page\r\n- Implemented password update functionality with bcrypt hashing\r\n- Added frontend routes for password recovery flow\r\n- Configured dynamic frontend reset URL using environment variables\r\n\r\n## 📸 Screenshots (if applicable)\r\n<img width=\"620\" height=\"578\" alt=\"Screenshot 2026-05-27 113620\" src=\"https://github.com/user-attachments/assets/f1d186a3-1de5-4adb-ae42-ce5efc093c7a\" />\r\n<img width=\"1917\" height=\"920\" alt=\"Screenshot 2026-05-27 115343\" src=\"https://github.com/user-attachments/assets/f8fb9aa0-0c96-4a6b-9c36-b2c095619169\" />\r\n<img width=\"1918\" height=\"908\" alt=\"Screenshot 2026-05-27 115354\" src=\"https://github.com/user-attachments/assets/45f4cb92-06d8-48ae-8317-e1688a23640b\" />\r\n<img width=\"1904\" height=\"910\" alt=\"Screenshot 2026-05-27 115418\" src=\"https://github.com/user-attachments/assets/f58e59be-d233-4fb1-8501-0497331fa924\" />\r\n<img width=\"1570\" height=\"302\" alt=\"Screenshot 2026-05-27 115442\" src=\"https://github.com/user-attachments/assets/eac04249-b92a-49ad-ac39-6ddc535e7328\" />\r\n<img width=\"1888\" height=\"914\" alt=\"Screenshot 2026-05-27 115844\" src=\"https://github.com/user-attachments/assets/4fc8bc74-af5b-4eb1-9b4e-18f26c611ef9\" />\r\n<img width=\"1899\" height=\"902\" alt=\"Screenshot 2026-05-27 120114\" src=\"https://github.com/user-attachments/assets/b503a33b-2952-4db9-969a-3bbe3d49404e\" />\r\n<img width=\"949\" height=\"888\" alt=\"Screenshot 2026-05-27 130040\" src=\"https://github.com/user-attachments/assets/053d7a05-7acf-4cac-877a-94522607ea5c\" />\r\n\r\n\r\n## ✅ Checklist\r\n- [X] Code runs locally\r\n- [X] Followed project structure\r\n- [X] No console errors\r\n- [X] Properly tested changes\r\n- [X] Linked the issue\r\n\r\n## 🚀 Notes for Reviewers\r\nThe forgot-password and reset-password workflow has been fully tested locally. Reset links are currently logged in the backend console for development/testing purposes.\r\n",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1202/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1202/timeline",
"performed_via_github_app": null,
"state_reason": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1201",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1201/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1201/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1201/events",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1201",
"id": 4530284132,
"node_id": "PR_kwDOQijnXs7ftwMN",
"number": 1201,
"title": "Fix : Standardized the login , signup , and googleLogin functions in …",
"user": {
"login": "prajapatideepak2370",
"id": 230383577,
"node_id": "U_kgDODbtf2Q",
"avatar_url": "https://avatars.githubusercontent.com/u/230383577?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/prajapatideepak2370",
"html_url": "https://github.com/prajapatideepak2370",
"followers_url": "https://api.github.com/users/prajapatideepak2370/followers",
"following_url": "https://api.github.com/users/prajapatideepak2370/following{/other_user}",
"gists_url": "https://api.github.com/users/prajapatideepak2370/gists{/gist_id}",
"starred_url": "https://api.github.com/users/prajapatideepak2370/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/prajapatideepak2370/subscriptions",
"organizations_url": "https://api.github.com/users/prajapatideepak2370/orgs",
"repos_url": "https://api.github.com/users/prajapatideepak2370/repos",
"events_url": "https://api.github.com/users/prajapatideepak2370/events{/privacy}",
"received_events_url": "https://api.github.com/users/prajapatideepak2370/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2026-05-27T07:03:57Z",
"updated_at": "2026-05-27T07:19:45Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"draft": false,
"pull_request": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/pulls/1201",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1201",
"diff_url": "https://github.com/aryandas2911/DailyForge/pull/1201.diff",
"patch_url": "https://github.com/aryandas2911/DailyForge/pull/1201.patch",
"merged_at": null
},
"body": "…authController.js to use the same JWT algorithm ( HS256 by default) and expiration settings\r\n\r\n## 📌 Description\r\nImplemented major authentication and reliability improvements across the application, including standardized JWT token generation and expiration handling, consistent MongoDB ObjectID processing, and Firebase token validation with clock-skew tolerance. Enhanced timeout and error handling by increasing Axios request limits, improving middleware error responses, and adding user-friendly timeout messages in login/signup pages. Also configured backend and frontend environment setup with `.env` files and verified successful database connection and frontend startup on port 5173.\r\n\r\n\r\n## 🔗 Related Issue\r\nCloses #1200 \r\n\r\n## 🛠 Changes Made\r\n- Standardized JWT authentication across login, signup, and Google login.\r\n- Fixed MongoDB ObjectID handling using .toString() for consistent token verification.\r\n- Added 5-minute leeway for Firebase token expiration to avoid clock mismatch errors.\r\n- Increased Axios request timeout to 60 seconds to handle server cold starts.\r\n- Improved error messages for login, signup, and auth middleware.\r\n- Updated frontend to show clearer timeout/loading feedback to users.\r\n\r\n\r\n\r\n## ✅ Checklist\r\n- [x] Code runs locally\r\n- [x] Followed project structure\r\n- [x] No console errors\r\n- [x] Properly tested changes\r\n- [x] Linked the issue\r\n\r\n## 🚀 Notes for Reviewers\r\nAnything specific you want reviewed.\r\n",
"closed_by": {
"login": "prajapatideepak2370",
"id": 230383577,
"node_id": "U_kgDODbtf2Q",
"avatar_url": "https://avatars.githubusercontent.com/u/230383577?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/prajapatideepak2370",
"html_url": "https://github.com/prajapatideepak2370",
"followers_url": "https://api.github.com/users/prajapatideepak2370/followers",
"following_url": "https://api.github.com/users/prajapatideepak2370/following{/other_user}",
"gists_url": "https://api.github.com/users/prajapatideepak2370/gists{/gist_id}",
"starred_url": "https://api.github.com/users/prajapatideepak2370/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/prajapatideepak2370/subscriptions",
"organizations_url": "https://api.github.com/users/prajapatideepak2370/orgs",
"repos_url": "https://api.github.com/users/prajapatideepak2370/repos",
"events_url": "https://api.github.com/users/prajapatideepak2370/events{/privacy}",
"received_events_url": "https://api.github.com/users/prajapatideepak2370/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1201/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1201/timeline",
"performed_via_github_app": null,
"state_reason": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1200",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1200/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1200/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1200/events",
"html_url": "https://github.com/aryandas2911/DailyForge/issues/1200",
"id": 4529534897,
"node_id": "I_kwDOQijnXs8AAAABDfs3sQ",
"number": 1200,
"title": "User Signup problem",
"user": {
"login": "prajapatideepak2370",
"id": 230383577,
"node_id": "U_kgDODbtf2Q",
"avatar_url": "https://avatars.githubusercontent.com/u/230383577?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/prajapatideepak2370",
"html_url": "https://github.com/prajapatideepak2370",
"followers_url": "https://api.github.com/users/prajapatideepak2370/followers",
"following_url": "https://api.github.com/users/prajapatideepak2370/following{/other_user}",
"gists_url": "https://api.github.com/users/prajapatideepak2370/gists{/gist_id}",
"starred_url": "https://api.github.com/users/prajapatideepak2370/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/prajapatideepak2370/subscriptions",
"organizations_url": "https://api.github.com/users/prajapatideepak2370/orgs",
"repos_url": "https://api.github.com/users/prajapatideepak2370/repos",
"events_url": "https://api.github.com/users/prajapatideepak2370/events{/privacy}",
"received_events_url": "https://api.github.com/users/prajapatideepak2370/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 2,
"created_at": "2026-05-27T04:32:17Z",
"updated_at": "2026-05-27T05:04:53Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"sub_issues_summary": {
"total": 0,
"completed": 0,
"percent_completed": 0
},
"issue_dependencies_summary": {
"blocked_by": 0,
"total_blocked_by": 0,
"blocking": 0,
"total_blocking": 0
},
"body": "Users are unable to create an account on the platform. During signup, the following errors appear: ΓÇ£Invalid or expired Firebase tokenΓÇ¥ and ΓÇ£Request timeout exceeded.ΓÇ¥\n",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1200/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1200/timeline",
"performed_via_github_app": null,
"state_reason": null,
"pinned_comment": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1199",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1199/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1199/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1199/events",
"html_url": "https://github.com/aryandas2911/DailyForge/issues/1199",
"id": 4529454821,
"node_id": "I_kwDOQijnXs8AAAABDfn-5Q",
"number": 1199,
"title": "Duplicate Password Visibility Icons in Auth Input Fields",
"user": {
"login": "Tejas-G26",
"id": 257256117,
"node_id": "U_kgDOD1VqtQ",
"avatar_url": "https://avatars.githubusercontent.com/u/257256117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/Tejas-G26",
"html_url": "https://github.com/Tejas-G26",
"followers_url": "https://api.github.com/users/Tejas-G26/followers",
"following_url": "https://api.github.com/users/Tejas-G26/following{/other_user}",
"gists_url": "https://api.github.com/users/Tejas-G26/gists{/gist_id}",
"starred_url": "https://api.github.com/users/Tejas-G26/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/Tejas-G26/subscriptions",
"organizations_url": "https://api.github.com/users/Tejas-G26/orgs",
"repos_url": "https://api.github.com/users/Tejas-G26/repos",
"events_url": "https://api.github.com/users/Tejas-G26/events{/privacy}",
"received_events_url": "https://api.github.com/users/Tejas-G26/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2026-05-27T04:14:39Z",
"updated_at": "2026-05-27T04:15:08Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"sub_issues_summary": {
"total": 0,
"completed": 0,
"percent_completed": 0
},
"issue_dependencies_summary": {
"blocked_by": 0,
"total_blocked_by": 0,
"blocking": 0,
"total_blocking": 0
},
"body": "# Duplicate Password Visibility Icons in Authentication Inputs\n\n## Description\n\nOn some browsers (especially Microsoft Edge and Chromium-based browsers), password input fields display duplicate password visibility toggle icons.\n\nThe issue occurs when:\n\n* the browser shows its native password reveal icon\n* while the application already renders a custom Eye / EyeOff toggle button\n\nThis results in:\n\n* duplicated eye icons\n* inconsistent UI\n* overlapping controls inside password fields\n\n## Steps to Reproduce\n\n1. Open the Signup/Login page\n2. Click inside the password field\n3. Enter a password\n4. Observe the password visibility controls\n\n## Expected Behavior\n\nOnly a single password visibility toggle should appear.\n\n## Actual Behavior\n\nTwo separate password visibility toggle icons appear inside the password input field.\n\n## Screenshots / Media\n\n<img width=\"1006\" height=\"648\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/8a32c1f0-2437-4a8b-a246-c86929b93e1f\" />\n\n## Request\n\nHi , I would like to work on this issue. Please assign it to me if available.\n",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1199/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1199/timeline",
"performed_via_github_app": null,
"state_reason": null,
"pinned_comment": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1198",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1198/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1198/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1198/events",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1198",
"id": 4529115827,
"node_id": "PR_kwDOQijnXs7fqAnu",
"number": 1198,
"title": "Fix/signup name input UI",
"user": {
"login": "srujana-manda",
"id": 195081868,
"node_id": "U_kgDOC6C2jA",
"avatar_url": "https://avatars.githubusercontent.com/u/195081868?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/srujana-manda",
"html_url": "https://github.com/srujana-manda",
"followers_url": "https://api.github.com/users/srujana-manda/followers",
"following_url": "https://api.github.com/users/srujana-manda/following{/other_user}",
"gists_url": "https://api.github.com/users/srujana-manda/gists{/gist_id}",
"starred_url": "https://api.github.com/users/srujana-manda/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/srujana-manda/subscriptions",
"organizations_url": "https://api.github.com/users/srujana-manda/orgs",
"repos_url": "https://api.github.com/users/srujana-manda/repos",
"events_url": "https://api.github.com/users/srujana-manda/events{/privacy}",
"received_events_url": "https://api.github.com/users/srujana-manda/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2026-05-27T03:00:00Z",
"updated_at": "2026-05-27T03:00:00Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"draft": false,
"pull_request": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/pulls/1198",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1198",
"diff_url": "https://github.com/aryandas2911/DailyForge/pull/1198.diff",
"patch_url": "https://github.com/aryandas2911/DailyForge/pull/1198.patch",
"merged_at": null
},
"body": "## 📌 Description\r\nFixed UI inconsistency in the Sign Up page where the \"Full Name\" input field was missing proper structural styling (background, border, and focus state). Now all input fields (Name, Email, Password, Confirm Password) follow a consistent design system.\r\n\r\n## 🔗 Related Issue\r\nCloses #1149\r\n\r\n## 🛠 Changes Made\r\n- Ensured consistent `input-modern` styling for all Sign Up input fields\r\n- Fixed missing background/border visibility issue in Name field\r\n- Improved UI consistency across form inputs\r\n- Verified focus and hover states for better UX\r\n\r\n## 📸 Screenshots (if applicable)\r\nBEFORE\r\n<img width=\"1365\" height=\"1094\" alt=\"before1\" src=\"https://github.com/user-attachments/assets/bad498cd-7b9c-4355-bda0-1649f22de9bf\" />\r\n\r\nAFTER\r\n<img width=\"1365\" height=\"1101\" alt=\"after1\" src=\"https://github.com/user-attachments/assets/3d6a8f45-c54b-457c-85f4-f14c29846a1f\" />\r\n\r\n## ✅ Checklist\r\n- [x] Code runs locally\r\n- [x] Followed project structure\r\n- [x] No console errors\r\n- [x] Properly tested changes on Sign Up page\r\n- [x] Linked the issue\r\n\r\n## 🚀 Notes for Reviewers\r\nPlease verify that all input fields have consistent styling and that the Sign Up form matches the existing UI design system.\r\n\r\n",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1198/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1198/timeline",
"performed_via_github_app": null,
"state_reason": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1197",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1197/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1197/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1197/events",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1197",
"id": 4527297070,
"node_id": "PR_kwDOQijnXs7fkMtj",
"number": 1197,
"title": " Shivlayy - Made my first pull request",
"user": {
"login": "shivlay29",
"id": 286866251,
"node_id": "U_kgDOERk7Sw",
"avatar_url": "https://avatars.githubusercontent.com/u/286866251?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivlay29",
"html_url": "https://github.com/shivlay29",
"followers_url": "https://api.github.com/users/shivlay29/followers",
"following_url": "https://api.github.com/users/shivlay29/following{/other_user}",
"gists_url": "https://api.github.com/users/shivlay29/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivlay29/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivlay29/subscriptions",
"organizations_url": "https://api.github.com/users/shivlay29/orgs",
"repos_url": "https://api.github.com/users/shivlay29/repos",
"events_url": "https://api.github.com/users/shivlay29/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivlay29/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 1,
"created_at": "2026-05-26T20:31:48Z",
"updated_at": "2026-05-26T20:33:34Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"draft": false,
"pull_request": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/pulls/1197",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1197",
"diff_url": "https://github.com/aryandas2911/DailyForge/pull/1197.diff",
"patch_url": "https://github.com/aryandas2911/DailyForge/pull/1197.patch",
"merged_at": null
},
"body": "## 📌 Description\r\nUpdated the metadata and SEO configuration in `index.html`.\r\n\r\n## 🔗 Related Issue\r\nCloses #<>\r\n\r\n## 🛠 Changes Made\r\n- Improved page title\r\n- Updated meta description\r\n- Added theme-color meta tag\r\n- Added Open Graph preview image\r\n\r\n## ✅ Checklist\r\n- [x] Code runs locally\r\n- [x] Followed project structure\r\n- [x] No console errors\r\n- [x] Properly tested changes\r\n- [x] Linked the issue\r\n\r\n## 🚀 Notes for Reviewers\r\nThis PR includes small SEO and metadata improvements without affecting existing functionality.",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1197/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1197/timeline",
"performed_via_github_app": null,
"state_reason": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1196",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1196/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1196/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1196/events",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1196",
"id": 4527282773,
"node_id": "PR_kwDOQijnXs7fkJpg",
"number": 1196,
"title": " Shivlayy - Made my first pull request",
"user": {
"login": "shivlay29",
"id": 286866251,
"node_id": "U_kgDOERk7Sw",
"avatar_url": "https://avatars.githubusercontent.com/u/286866251?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivlay29",
"html_url": "https://github.com/shivlay29",
"followers_url": "https://api.github.com/users/shivlay29/followers",
"following_url": "https://api.github.com/users/shivlay29/following{/other_user}",
"gists_url": "https://api.github.com/users/shivlay29/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivlay29/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivlay29/subscriptions",
"organizations_url": "https://api.github.com/users/shivlay29/orgs",
"repos_url": "https://api.github.com/users/shivlay29/repos",
"events_url": "https://api.github.com/users/shivlay29/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivlay29/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "closed",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2026-05-26T20:29:43Z",
"updated_at": "2026-05-26T20:30:20Z",
"closed_at": "2026-05-26T20:30:20Z",
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"draft": false,
"pull_request": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/pulls/1196",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1196",
"diff_url": "https://github.com/aryandas2911/DailyForge/pull/1196.diff",
"patch_url": "https://github.com/aryandas2911/DailyForge/pull/1196.patch",
"merged_at": null
},
"body": "## 📌 Description\r\nUpdated the metadata and SEO configuration in `index.html`.\r\n\r\n## 🔗 Related Issue\r\nCloses #<issue_number>\r\n\r\n## 🛠 Changes Made\r\n- Improved page title\r\n- Updated meta description\r\n- Added theme-color meta tag\r\n- Added Open Graph preview image\r\n\r\n## ✅ Checklist\r\n- [x] Code runs locally\r\n- [x] Followed project structure\r\n- [x] No console errors\r\n- [x] Properly tested changes\r\n- [x] Linked the issue\r\n\r\n## 🚀 Notes for Reviewers\r\nThis PR includes small SEO and metadata improvements without affecting existing functionality.",
"closed_by": {
"login": "shivlay29",
"id": 286866251,
"node_id": "U_kgDOERk7Sw",
"avatar_url": "https://avatars.githubusercontent.com/u/286866251?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/shivlay29",
"html_url": "https://github.com/shivlay29",
"followers_url": "https://api.github.com/users/shivlay29/followers",
"following_url": "https://api.github.com/users/shivlay29/following{/other_user}",
"gists_url": "https://api.github.com/users/shivlay29/gists{/gist_id}",
"starred_url": "https://api.github.com/users/shivlay29/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/shivlay29/subscriptions",
"organizations_url": "https://api.github.com/users/shivlay29/orgs",
"repos_url": "https://api.github.com/users/shivlay29/repos",
"events_url": "https://api.github.com/users/shivlay29/events{/privacy}",
"received_events_url": "https://api.github.com/users/shivlay29/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1196/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1196/timeline",
"performed_via_github_app": null,
"state_reason": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1195",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1195/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1195/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1195/events",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1195",
"id": 4526739379,
"node_id": "PR_kwDOQijnXs7fiYeY",
"number": 1195,
"title": "style: add DailyForge logo SVG, favicon, and integrate into navbar an…",
"user": {
"login": "vedikajindal",
"id": 215107634,
"node_id": "U_kgDODNJIMg",
"avatar_url": "https://avatars.githubusercontent.com/u/215107634?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/vedikajindal",
"html_url": "https://github.com/vedikajindal",
"followers_url": "https://api.github.com/users/vedikajindal/followers",
"following_url": "https://api.github.com/users/vedikajindal/following{/other_user}",
"gists_url": "https://api.github.com/users/vedikajindal/gists{/gist_id}",
"starred_url": "https://api.github.com/users/vedikajindal/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/vedikajindal/subscriptions",
"organizations_url": "https://api.github.com/users/vedikajindal/orgs",
"repos_url": "https://api.github.com/users/vedikajindal/repos",
"events_url": "https://api.github.com/users/vedikajindal/events{/privacy}",
"received_events_url": "https://api.github.com/users/vedikajindal/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2026-05-26T19:02:25Z",
"updated_at": "2026-05-26T19:02:25Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"draft": false,
"pull_request": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/pulls/1195",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1195",
"diff_url": "https://github.com/aryandas2911/DailyForge/pull/1195.diff",
"patch_url": "https://github.com/aryandas2911/DailyForge/pull/1195.patch",
"merged_at": null
},
"body": "## 📌 Description\r\nAdds a new DailyForge logo (anvil + hammer + sparks SVG), favicon, and integrates the logo into the navbar and loading screens. Replaces the \"D\" placeholder in ProtectedRoutes and PublicRoute with the new logo. The logo uses the existing brand colors.\r\n\r\n\r\n## 🔗 Related Issue\r\nCloses #302\r\n\r\n## 🛠 Changes Made\r\n- Added `frontend/public/logo.svg` — new DailyForge anvil+hammer logo\r\n- Added `frontend/public/favicon.svg` — SVG favicon for browser tab\r\n- Updated `frontend/index.html` — replaced PNG favicon links with SVG\r\n- Updated `frontend/src/components/Navbar.jsx` — integrated logo image\r\n- Updated `frontend/src/components/ProtectedRoutes.jsx` — replaced D placeholder with logo\r\n- Updated `frontend/src/components/PublicRoute.jsx` — replaced D placeholder with logo\r\n\r\n## 📸 Screenshots (if applicable)\r\n<img width=\"542\" height=\"318\" alt=\"image\" src=\"https://github.com/user-attachments/assets/2982a4b0-c1d4-4a1e-88d8-90bd6c92c6ec\" />\r\n\r\n<img width=\"1457\" height=\"850\" alt=\"image\" src=\"https://github.com/user-attachments/assets/73f39394-01b3-4599-b629-c5c678d66bd0\" />\r\n\r\n<img width=\"311\" height=\"67\" alt=\"image\" src=\"https://github.com/user-attachments/assets/57c631cc-bd0f-4750-8cf0-9a3ac5e56001\" />\r\n\r\n\r\n## ✅ Checklist\r\n- [x] I have read CONTRIBUTING.md\r\n- [x] My branch follows the naming convention (style/branding-logo-favicon)\r\n- [x] I have tested this locally\r\n- [x] Linting passes (`npm run lint` in frontend/)\r\n- [x] No unrelated files were modified\r\n- [x] Screenshots are attached",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1195/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1195/timeline",
"performed_via_github_app": null,
"state_reason": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1194",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1194/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1194/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1194/events",
"html_url": "https://github.com/aryandas2911/DailyForge/issues/1194",
"id": 4526373668,
"node_id": "I_kwDOQijnXs8AAAABDcr7JA",
"number": 1194,
"title": "Title: UI/UX: Improve task completion modal visibility and allow short notes",
"user": {
"login": "archiehashani94",
"id": 241437819,
"node_id": "U_kgDODmQMew",
"avatar_url": "https://avatars.githubusercontent.com/u/241437819?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/archiehashani94",
"html_url": "https://github.com/archiehashani94",
"followers_url": "https://api.github.com/users/archiehashani94/followers",
"following_url": "https://api.github.com/users/archiehashani94/following{/other_user}",
"gists_url": "https://api.github.com/users/archiehashani94/gists{/gist_id}",
"starred_url": "https://api.github.com/users/archiehashani94/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/archiehashani94/subscriptions",
"organizations_url": "https://api.github.com/users/archiehashani94/orgs",
"repos_url": "https://api.github.com/users/archiehashani94/repos",
"events_url": "https://api.github.com/users/archiehashani94/events{/privacy}",
"received_events_url": "https://api.github.com/users/archiehashani94/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 7,
"created_at": "2026-05-26T18:06:39Z",
"updated_at": "2026-05-27T06:49:16Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"sub_issues_summary": {
"total": 0,
"completed": 0,
"percent_completed": 0
},
"issue_dependencies_summary": {
"blocked_by": 0,
"total_blocked_by": 0,
"blocking": 0,
"total_blocking": 0
},
"body": "Description:\n\n## Bug Description\n\nWhile marking a task as completed, the modal text has poor visibility on the dark theme and becomes readable only after selecting/highlighting the text.\n\nAdditionally, the modal currently only accepts numeric input for completion time. Users should also be able to add a short note/comment (one-line input) about the completed task.\n\n## Steps to Reproduce\n\n1. Open DailyForge\n2. Open a task\n3. Click \"Mark Complete\"\n4. Observe text visibility in the modal\n5. Try entering a short completion note\n\n## Expected Behavior\n\n* Text should be clearly visible without selecting it\n* User should be able to add a short note/comment along with completion details\n\n## Actual Behavior\n\n* Text is barely visible\n* Only numeric values can be entered\n\n## Screenshots\n\n<img width=\"1467\" height=\"533\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/0052846d-f33d-4780-b404-10cbe8037672\" />\n",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1194/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1194/timeline",
"performed_via_github_app": null,
"state_reason": null,
"pinned_comment": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1193",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1193/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1193/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1193/events",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1193",
"id": 4526310643,
"node_id": "PR_kwDOQijnXs7fhBRz",
"number": 1193,
"title": "Fix signup 429",
"user": {
"login": "parneetbrar234-svg",
"id": 226455749,
"node_id": "U_kgDODX9wxQ",
"avatar_url": "https://avatars.githubusercontent.com/u/226455749?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/parneetbrar234-svg",
"html_url": "https://github.com/parneetbrar234-svg",
"followers_url": "https://api.github.com/users/parneetbrar234-svg/followers",
"following_url": "https://api.github.com/users/parneetbrar234-svg/following{/other_user}",
"gists_url": "https://api.github.com/users/parneetbrar234-svg/gists{/gist_id}",
"starred_url": "https://api.github.com/users/parneetbrar234-svg/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/parneetbrar234-svg/subscriptions",
"organizations_url": "https://api.github.com/users/parneetbrar234-svg/orgs",
"repos_url": "https://api.github.com/users/parneetbrar234-svg/repos",
"events_url": "https://api.github.com/users/parneetbrar234-svg/events{/privacy}",
"received_events_url": "https://api.github.com/users/parneetbrar234-svg/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 0,
"created_at": "2026-05-26T17:55:50Z",
"updated_at": "2026-05-26T18:13:11Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"draft": false,
"pull_request": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/pulls/1193",
"html_url": "https://github.com/aryandas2911/DailyForge/pull/1193",
"diff_url": "https://github.com/aryandas2911/DailyForge/pull/1193.diff",
"patch_url": "https://github.com/aryandas2911/DailyForge/pull/1193.patch",
"merged_at": null
},
"body": "## 📌 Description\r\nFixed signup/authentication request failures caused by CORS configuration issues during local development.\r\n\r\n## 🔗 Related Issue\r\nCloses #1159 #1141 \r\n\r\n## 🛠 Changes Made\r\n1. Added localhost:5174 to allowed CORS origins\r\n2. Added 127.0.0.1:5174 to allowed CORS origins\r\n3. Fixed frontend-backend communication for Vite local server\r\n4. Resolved signup request failures caused by blocked API requests \r\n\r\n## ✅ Checklist\r\n- [X] Code runs locally\r\n- [X] Followed project structure\r\n- [X] No console errors\r\n- [X] Properly tested changes\r\n- [X] Linked the issue\r\n\r\n## 🚀 Notes for Reviewers\r\nThis fix resolves local development authentication/signup failures caused by frontend requests being blocked due to missing localhost:5174 CORS configuration.\r\n",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1193/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1193/timeline",
"performed_via_github_app": null,
"state_reason": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1192",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1192/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1192/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1192/events",
"html_url": "https://github.com/aryandas2911/DailyForge/issues/1192",
"id": 4526204662,
"node_id": "I_kwDOQijnXs8AAAABDchm9g",
"number": 1192,
"title": "Title: Bug: Saved routines load blank weekly calendar",
"user": {
"login": "archiehashani94",
"id": 241437819,
"node_id": "U_kgDODmQMew",
"avatar_url": "https://avatars.githubusercontent.com/u/241437819?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/archiehashani94",
"html_url": "https://github.com/archiehashani94",
"followers_url": "https://api.github.com/users/archiehashani94/followers",
"following_url": "https://api.github.com/users/archiehashani94/following{/other_user}",
"gists_url": "https://api.github.com/users/archiehashani94/gists{/gist_id}",
"starred_url": "https://api.github.com/users/archiehashani94/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/archiehashani94/subscriptions",
"organizations_url": "https://api.github.com/users/archiehashani94/orgs",
"repos_url": "https://api.github.com/users/archiehashani94/repos",
"events_url": "https://api.github.com/users/archiehashani94/events{/privacy}",
"received_events_url": "https://api.github.com/users/archiehashani94/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 3,
"created_at": "2026-05-26T17:38:11Z",
"updated_at": "2026-05-27T03:49:31Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"sub_issues_summary": {
"total": 0,
"completed": 0,
"percent_completed": 0
},
"issue_dependencies_summary": {
"blocked_by": 0,
"total_blocked_by": 0,
"blocking": 0,
"total_blocking": 0
},
"body": "Description:\n\n## Bug Description\n\nClicking an existing saved routine opens an empty weekly calendar instead of loading the routine data.\n\n## Steps to Reproduce\n\n1. Create and save a routine\n2. Open \"Saved Routines\"\n3. Click any saved routine\n\n## Expected Behavior\n\nThe selected routine should populate the weekly calendar with saved data.\n\n## Actual Behavior\n\nA blank calendar opens.\n\n## Screenshots\n\n<img width=\"1003\" height=\"620\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/2e9d93cf-de75-4785-9f53-618dab7945df\" />\n",
"closed_by": null,
"reactions": {
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1192/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
},
"timeline_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1192/timeline",
"performed_via_github_app": null,
"state_reason": null,
"pinned_comment": null
},
{
"url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1191",
"repository_url": "https://api.github.com/repos/aryandas2911/DailyForge",
"labels_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1191/labels{/name}",
"comments_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1191/comments",
"events_url": "https://api.github.com/repos/aryandas2911/DailyForge/issues/1191/events",
"html_url": "https://github.com/aryandas2911/DailyForge/issues/1191",
"id": 4526181733,
"node_id": "I_kwDOQijnXs8AAAABDcgNZQ",
"number": 1191,
"title": "[FEATURE]: Auto-Label Issues with GSSoC Detection",
"user": {
"login": "vansh-09",
"id": 171938832,
"node_id": "U_kgDOCj-UEA",
"avatar_url": "https://avatars.githubusercontent.com/u/171938832?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/vansh-09",
"html_url": "https://github.com/vansh-09",
"followers_url": "https://api.github.com/users/vansh-09/followers",
"following_url": "https://api.github.com/users/vansh-09/following{/other_user}",
"gists_url": "https://api.github.com/users/vansh-09/gists{/gist_id}",
"starred_url": "https://api.github.com/users/vansh-09/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/vansh-09/subscriptions",
"organizations_url": "https://api.github.com/users/vansh-09/orgs",
"repos_url": "https://api.github.com/users/vansh-09/repos",
"events_url": "https://api.github.com/users/vansh-09/events{/privacy}",
"received_events_url": "https://api.github.com/users/vansh-09/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
},
"labels": [
],
"state": "open",
"locked": false,
"assignees": [
],
"milestone": null,
"comments": 2,
"created_at": "2026-05-26T17:34:01Z",
"updated_at": "2026-05-27T05:48:36Z",
"closed_at": null,
"assignee": null,
"author_association": "NONE",
"active_lock_reason": null,
"sub_issues_summary": {
"total": 0,
"completed": 0,