File tree 4 files changed +1
-6
lines changed
4 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ const Header = styled.div`
37
37
const CaretIcon = styled ( CaretRightIcon ) `
38
38
transform: rotate(0deg);
39
39
40
- [data-state='open'] & {
40
+ button [data-state='open'] & {
41
41
transform: rotate(90deg);
42
42
}
43
43
`
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import { useDeepCompareEffect } from 'react-use'
10
10
interface WebLogViewProps {
11
11
requests : ProxyDataWithMatches [ ]
12
12
groups ?: GroupType [ ]
13
- activeGroup ?: string
14
13
selectedRequestId ?: string
15
14
onSelectRequest : ( data : ProxyDataWithMatches | null ) => void
16
15
onUpdateGroup ?: ( group : GroupType ) => void
Original file line number Diff line number Diff line change @@ -212,7 +212,6 @@ export function Recorder() {
212
212
selectedRequestId = { selectedRequest ?. id }
213
213
autoScroll
214
214
groups = { groups }
215
- activeGroup = { group ?. id }
216
215
onSelectRequest = { setSelectedRequest }
217
216
onUpdateGroup = { handleUpdateGroup }
218
217
resetProxyData = { handleResetRecording }
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ interface RequestsSectionProps {
16
16
groups ?: Group [ ]
17
17
selectedRequestId ?: string
18
18
autoScroll ?: boolean
19
- activeGroup ?: string
20
19
noDataElement ?: ReactNode
21
20
onSelectRequest : ( data : ProxyData | null ) => void
22
21
onUpdateGroup ?: ( group : Group ) => void
@@ -29,7 +28,6 @@ export function RequestsSection({
29
28
noDataElement,
30
29
autoScroll = false ,
31
30
groups,
32
- activeGroup,
33
31
onSelectRequest,
34
32
onUpdateGroup,
35
33
resetProxyData,
@@ -90,7 +88,6 @@ export function RequestsSection({
90
88
< WebLogView
91
89
requests = { filteredRequests }
92
90
groups = { groups }
93
- activeGroup = { activeGroup }
94
91
selectedRequestId = { selectedRequestId }
95
92
onSelectRequest = { onSelectRequest }
96
93
onUpdateGroup = { onUpdateGroup }
You can’t perform that action at this time.
0 commit comments