Commit 5cadc69a authored by Shawn Tabrizi's avatar Shawn Tabrizi
Browse files

typo

parent 499b9206
......@@ -53,7 +53,7 @@ module.exports = (app) => {
problemsText.push(`Contributor did not properly post their Polkadot or Kusama address. Make sure the pull request has: "{network} address: {address}".`);
} else {
network = maybeMatch[1].toLowerCase();
if (!["polkadot", "kusma", "localtest"].includes(network)) {
if (!["polkadot", "kusama", "localtest"].includes(network)) {
problemsText.push(`Invalid network: ${maybeMatch[1]}. Please select "polkadot" or "kusama".`);
}
address = maybeMatch[2];
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment