Skip to content

Commit

Permalink
Update default state value in Generator component to block all bots
Browse files Browse the repository at this point in the history
  • Loading branch information
elchiconube committed Dec 19, 2024
1 parent 41824ec commit 76e57e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/generator/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface Configuration {
}

export default function Generator() {
const [value, setValue] = useState("");
const [value, setValue] = useState("User-agent: *\nDisallow:");
const [selectedBots, setSelectedBots] = useState({});
const [blockAllBots, setBlockAllBots] = useState(false);

Expand Down

0 comments on commit 76e57e3

Please sign in to comment.