Skip to content

Commit 4218aff

Browse files
delete: dark theme toggeler
1 parent 9abb9f5 commit 4218aff

File tree

5 files changed

+5
-19
lines changed

5 files changed

+5
-19
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,4 +126,4 @@ To install the necessary dependencies and start the application, follow these st
126126
```bash setup.sh```
127127

128128
2. **Start the Application**: After the installation is complete, run the following command to start the application:
129-
```concurrently \"npm run client\" \"npm run server\"```
129+
```npm run start```

frontend/src/app/beneficiary/beneficiary.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
role="heading"
66
class="pb-6 border-b text-xl font-bold text-left leading-6 text-primary-blue uppercase lg:px-0 px-6 dark:text-white"
77
>
8-
Beneficiary
8+
Beneficiaries
99
</div>
1010
</div>
1111
<div class="lg:flex mt-12">

frontend/src/app/components/navbar/navbar.component.html

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -102,20 +102,6 @@
102102
</li>
103103
<!-- Add the theme toggle button here -->
104104
<li>
105-
<div class="theme-toggle toggleThemeButton ">
106-
<input
107-
type="checkbox"
108-
class="checkbox"
109-
id="checkbox"
110-
[checked]="isDarkMode"
111-
(change)="handleToggleTheme()"
112-
/>
113-
<label for="checkbox" class="checkbox-label">
114-
<i class="bi bi-moon-stars-fill"></i>
115-
<i class="bi bi-sun-fill"></i>
116-
<span class="ball"></span>
117-
</label>
118-
</div>
119105
</li>
120106
</ul>
121107

frontend/src/app/menu.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ export const menuList = [
44
url: "",
55
},
66
{
7-
name: "Beneficiary",
7+
name: "Beneficiaries",
88
url: "beneficiary",
99
},
1010
{
1111
name: "Send Money",
1212
url: "send-money",
1313
},
1414
{
15-
name: "Transaction",
15+
name: "Transactions",
1616
url: "transaction",
1717
},
1818
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"test:task8": "cd backend && mvn test -Dtest=com.hackerrank.corebanking.service.task8.TransactionServiceIT; cd .. && mv ./backend/target/surefire-reports/TEST-com.hackerrank.corebanking.service.task8.TransactionServiceIT.xml ./output/task8.xml",
2323
"test:task9": "cd backend && mvn test -Dtest=com.hackerrank.corebanking.controller.task9.TransactionControllerTest; cd .. && mv ./backend/target/surefire-reports/TEST-com.hackerrank.corebanking.controller.task9.TransactionControllerTest.xml ./output/task9.xml",
2424
"test:task10": "cd backend && mvn test -Dtest=com.hackerrank.corebanking.service.task10.TransactionServiceTest; cd .. && mv ./backend/target/surefire-reports/TEST-com.hackerrank.corebanking.service.task10.TransactionServiceTest.xml ./output/task10.xml",
25-
"test:task11": "cd backend && mvn test -Dtest=com.hackerrank.corebanking.service.task11.TransactionServiceTest,com.hackerrank.corebanking.service.task11.FraudDetectionServiceTest; cd .. && mv ./backend/target/surefire-reports/TEST-com.hackerrank.corebanking.service.task11.TransactionServiceTest.xml ./output/task11.xml"
25+
"test:task11": "cd backend && mvn test -Dtest=com.hackerrank.corebanking.service.task11.TransactionServiceTest,com.hackerrank.corebanking.service.task11.FraudDetectionServiceTest; cd .. && mv ./backend/target/surefire-reports/TEST-com.hackerrank.corebanking.service.task11.TransactionServiceTest.xml ./output/task11.xml && mv ./backend/target/surefire-reports/TEST-com.hackerrank.corebanking.service.task11.FraudDetectionServiceTest.xml ./output/task11.xml"
2626
},
2727
"keywords": [
2828
"core-banking",

0 commit comments

Comments
 (0)