Skip to content

Commit 8d559c5

Browse files
author
tkokhing
committed
M1
1 parent 7e6c6bf commit 8d559c5

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/app/_components/preference/toggle-frame.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ type Props = {
88
defaultOpen?: boolean;
99
};
1010

11-
export function ToggleFrame({ label, children, defaultOpen = true }: Props) {
12-
// export function ToggleFrame({ label, children, defaultOpen = false }: Props) {
11+
// export function ToggleFrame({ label, children, defaultOpen = true }: Props) {
12+
export function ToggleFrame({ label, children, defaultOpen = false }: Props) {
1313
const [isOpen, setIsOpen] = useState(defaultOpen);
1414
const ref = useRef<HTMLDivElement>(null);
1515

src/lib/share/constants.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,9 @@ export const RUNNING_SPN_PASSWORD = "running_spn_pas$word";
7272
export const EncodedText = "please_update_encoded_text_for_scshell"
7373

7474

75-
// For all sites VICTIM TAGGING
76-
export const VICTIM1_IP = MS01_IP_EXT;
75+
// For all sites VICTIM TAGGING 192.168.123.110
76+
// export const VICTIM1_IP = MS01_IP_EXT;
77+
export const VICTIM1_IP = "192.168.123.110";
7778
export const VICTIM1_PORT = MS01_FORWARD_PORT_2;
7879

7980

0 commit comments

Comments
 (0)