diff --git a/.env.demo.local b/.env.demo.local index 84a96af..89bc27c 100644 --- a/.env.demo.local +++ b/.env.demo.local @@ -15,6 +15,14 @@ DISCORD_SCOPE=SCOPE DISCORD_TOKEN=BOT_TOKEN DISCORD_CLIENT_INTENTS=32767 +GUILD_ID=653083797763522580 +REVIEW_GUILD_ID=906537041326637086 +REPORT_CHANNEL_ID=813255797823766568 +LOGGING_CHANNEL_ID=844006379823955978 +STATS_LOGGING_CHANNEL_ID=653227346962153472 +REVIEW_LOG_CHANNEL_ID=906551334063439902 +OPEN_REVIEW_LOG_CHANNEL_ID=1008376563731013643 + GITHUB_CLIENT_ID=GH_CLIENT_ID GITHUB_CLIENT_SECRET=GH_CLIENT_SECRET diff --git a/components/Form/Input.tsx b/components/Form/Input.tsx index 446e31f..2a3ea3b 100644 --- a/components/Form/Input.tsx +++ b/components/Form/Input.tsx @@ -4,7 +4,7 @@ const Input: React.FC = ({ name, placeholder, ...props }) => { return } @@ -12,6 +12,7 @@ const Input: React.FC = ({ name, placeholder, ...props }) => { interface InputProps { name: string placeholder?: string + warning?: boolean [key: string]: unknown } diff --git a/components/Form/Label.tsx b/components/Form/Label.tsx index 198b19e..6b75791 100644 --- a/components/Form/Label.tsx +++ b/components/Form/Label.tsx @@ -1,3 +1,5 @@ +import Tooltip from '@components/Tooltip' + const Label: React.FC = ({ For, children, @@ -7,6 +9,8 @@ const Label: React.FC = ({ grid = true, short = false, required = false, + warning = false, + warningText }) => { return + +