File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
web/src/components/wizard/setup Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from "react";
2
2
import Input from "../../common/Input" ;
3
3
import Select from "../../common/Select" ;
4
4
import { useBranding } from "../../../contexts/BrandingContext" ;
5
- import { ChevronDown , ChevronUp } from "lucide-react" ;
5
+ import { ChevronDown , ChevronRight } from "lucide-react" ;
6
6
7
7
interface LinuxSetupProps {
8
8
config : {
@@ -125,7 +125,7 @@ const LinuxSetup: React.FC<LinuxSetupProps> = ({
125
125
className = "flex items-center text-lg font-medium text-gray-900 mb-4"
126
126
onClick = { ( ) => onShowAdvancedChange ( ! showAdvanced ) }
127
127
>
128
- { showAdvanced ? < ChevronDown className = "w-4 h-4 mr-1" /> : < ChevronUp className = "w-4 h-4 mr-1" /> }
128
+ { showAdvanced ? < ChevronDown className = "w-4 h-4 mr-1" /> : < ChevronRight className = "w-4 h-4 mr-1" /> }
129
129
Advanced Settings
130
130
</ button >
131
131
You can’t perform that action at this time.
0 commit comments