From 9998d64d754c05349549e2dcbb5b69ad026dd13b Mon Sep 17 00:00:00 2001
From: abias <abias1122@gmail.com>
Date: Sun, 21 May 2023 15:31:42 -0400
Subject: [PATCH] Add heading tag to rate limit form

---
 src/shared/components/home/rate-limit-form.tsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/shared/components/home/rate-limit-form.tsx b/src/shared/components/home/rate-limit-form.tsx
index db37090..d4b68be 100644
--- a/src/shared/components/home/rate-limit-form.tsx
+++ b/src/shared/components/home/rate-limit-form.tsx
@@ -171,6 +171,7 @@ export default class RateLimitsForm extends Component<
   render() {
     return (
       <form onSubmit={linkEvent(this, submitRateLimitForm)}>
+        <h5>Rate Limit Options</h5>
         <Tabs
           tabs={rateLimitTypes.map(rateLimitType => ({
             key: rateLimitType,
-- 
2.44.1