+ {strategy === "single-org" ? (
+ <>
+ {/* Destination Organization - Left Column */}
+
+
+
onDestinationOrgChange(e.target.value)}
+ placeholder="github-mirrors"
+ className=""
+ />
+
+ Organization for consolidated repositories
+
+
+
+ {/* Starred Repositories Organization - Right Column */}
+
+
+
onStarredReposOrgChange(e.target.value)}
+ placeholder="starred"
+ className=""
+ />
+
+ Keep starred repos organized separately
+
+
+ >
+ ) : (
+ <>
+ {/* Starred Repositories Organization - Left Column */}
+
+
+
onStarredReposOrgChange(e.target.value)}
+ placeholder="starred"
+ className=""
+ />
+
+ Keep starred repos organized separately
+
+
+
+ {/* Organization Visibility - Right Column */}
+
+
+
+ {visibilityOptions.map((option) => {
+ const Icon = option.icon;
+ const isSelected = visibility === option.value;
+ return (
+
+ );
+ })}
+
+
+ >
+ )}
+
+
+ {/* Organization Visibility - Full width when single-org is selected */}
+ {strategy === "single-org" && (
+
+
+
+ {visibilityOptions.map((option) => {
+ const Icon = option.icon;
+ const isSelected = visibility === option.value;
+ return (
+
+ );
+ })}
+
+