diff --git a/cogs/livecontainer/__init__.py b/cogs/livecontainer/__init__.py index 31f7037..c654a36 100644 --- a/cogs/livecontainer/__init__.py +++ b/cogs/livecontainer/__init__.py @@ -76,7 +76,7 @@ class Livecontainer(commands.GroupCog, name="livecontainer"): @commands.check(_require_group_prefix) @commands.hybrid_command( - name="26jit", description="Interactive walkthrough for iOS 26 JIT and sideloading" + name="26jit", description="Walkthrough for iOS 26 JIT and sideloading" ) async def jit26(self, context): return await jit26_command()(self, context) diff --git a/cogs/livecontainer/livecontainer.py b/cogs/livecontainer/livecontainer.py index a66a917..2177d27 100644 --- a/cogs/livecontainer/livecontainer.py +++ b/cogs/livecontainer/livecontainer.py @@ -8,7 +8,7 @@ class LivecontainerSelect(discord.ui.Select): discord.SelectOption( label="iOS 26 JIT & Sideloading", value="26jit", - description="Interactive walkthrough for iOS 26 JIT and sideloading", + description="Walkthrough for iOS 26 JIT and sideloading", ), ] super().__init__(placeholder="Choose a LiveContainer command...", options=options)