Skip to content

Commit

Permalink
Added new default values
Browse files Browse the repository at this point in the history
  • Loading branch information
harshau007 committed Jun 23, 2024
1 parent 654ef57 commit 0bf0cf2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Binary file modified build/bin/welcome
Binary file not shown.
10 changes: 5 additions & 5 deletions frontend/src/components/CountrySelectionScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ const CountrySelectionScreen: React.FC<{
const [selectedCountries, setSelectedCountries] = useState<string[]>([]);
const [includeHttps, setIncludeHttps] = useState<boolean>(true);
const [includeHttp, setIncludeHttp] = useState<boolean>(false);
const [sortBy, setSortBy] = useState<string>("age");
const [maxMirrors, setMaxMirrors] = useState<number>(20);
const [timeout, setTimeout] = useState<number>(30);
const [sortBy, setSortBy] = useState<string>("rate");
const [maxMirrors, setMaxMirrors] = useState<number>(5);
const [timeout, setTimeout] = useState<number>(10);
const [isSelectOpen, setIsSelectOpen] = useState(false);
const { addLog, clearLogs, loading, setLoading } = useLogsContext();

Expand Down Expand Up @@ -79,8 +79,8 @@ const CountrySelectionScreen: React.FC<{
setIncludeHttps(true);
setIncludeHttp(false);
setSortBy("rate");
setMaxMirrors(20);
setTimeout(30);
setMaxMirrors(5);
setTimeout(10);
clearLogs();
}
};
Expand Down

0 comments on commit 0bf0cf2

Please sign in to comment.