diff --git a/src/app/[orgId]/settings/resources/[resourceId]/rules/page.tsx b/src/app/[orgId]/settings/resources/[resourceId]/rules/page.tsx
index 1b9eb6ca..a3fb033d 100644
--- a/src/app/[orgId]/settings/resources/[resourceId]/rules/page.tsx
+++ b/src/app/[orgId]/settings/resources/[resourceId]/rules/page.tsx
@@ -92,9 +92,9 @@ enum RuleAction {
}
enum RuleMatch {
+ PATH = "Path",
IP = "IP",
CIDR = "IP Range",
- PATH = "Path"
}
export default function ResourceRules(props: {
@@ -469,9 +469,9 @@ export default function ResourceRules(props: {
+ {RuleMatch.PATH}
{RuleMatch.IP}
{RuleMatch.CIDR}
- {RuleMatch.PATH}
)
@@ -665,17 +665,17 @@ export default function ResourceRules(props: {
+ {resource.http && (
+
+ {RuleMatch.PATH}
+
+ )}
{RuleMatch.IP}
{RuleMatch.CIDR}
- {resource.http && (
-
- {RuleMatch.PATH}
-
- )}