Skip to content

Commit 5a4251f

Browse files
committed
improved some functionality in linkedlistcomponent
1 parent a94c590 commit 5a4251f

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

next.config.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {
3-
reactStrictMode: false,
4-
};
2+
const nextConfig = {};
53

64
export default nextConfig;

src/app/components/linked-list/LinkedListComponent.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ const LinkedListComponent = () => {
6464
<option data-umami-event='selection-from-linked-list-reverse-list' value='reverse-linked-list'>
6565
Reverse list
6666
</option>
67+
<option data-umami-event='selection-from-linked-list-detect-cycle' value='cycle'>
68+
Detect Cycle
69+
</option>
6770
<option
6871
data-umami-event='selection-from-linked-list-merge-two-sorted-list'
6972
value='merge-two-linked-list'
@@ -73,9 +76,6 @@ const LinkedListComponent = () => {
7376
<option data-umami-event='selection-from-linked-list-BASIC' value='linked-list-crud'>
7477
Linked list basics
7578
</option>
76-
<option data-umami-event='selection-from-linked-list-detect-cycle' value='cycle'>
77-
Detect Cycle
78-
</option>
7979
</select>
8080
</div>
8181
<button

0 commit comments

Comments
 (0)