From aac20f41ceb367cf40c35c64e24645df812b19c0 Mon Sep 17 00:00:00 2001 From: Hampus Kraft Date: Fri, 20 Feb 2026 22:36:48 +0000 Subject: [PATCH] fix: channel ordering --- .../src/components/layout/utils/ChannelMoveOperation.test.tsx | 1 - packages/api/src/guild/tests/GuildChannelPositions.test.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/fluxer_app/src/components/layout/utils/ChannelMoveOperation.test.tsx b/fluxer_app/src/components/layout/utils/ChannelMoveOperation.test.tsx index 0e879eda..52191def 100644 --- a/fluxer_app/src/components/layout/utils/ChannelMoveOperation.test.tsx +++ b/fluxer_app/src/components/layout/utils/ChannelMoveOperation.test.tsx @@ -184,7 +184,6 @@ describe('ChannelMoveOperation', () => { position: 1, }); }); - it('returns null when dropping to the same effective placement', () => { const category = createChannel({id: 'category', type: ChannelTypes.GUILD_CATEGORY, position: 0}); const textOne = createChannel({ diff --git a/packages/api/src/guild/tests/GuildChannelPositions.test.tsx b/packages/api/src/guild/tests/GuildChannelPositions.test.tsx index 9dd475c2..6ef13b98 100644 --- a/packages/api/src/guild/tests/GuildChannelPositions.test.tsx +++ b/packages/api/src/guild/tests/GuildChannelPositions.test.tsx @@ -440,7 +440,6 @@ describe('Guild Channel Positions', () => { expect(frontDoorIndex).toBeGreaterThan(milsimsIndex); expect(frontDoorIndex).toBeLessThan(coopGamesIndex); }); - test('should reject text channels being positioned below voice channels via preceding_sibling_id', async () => { const account = await createTestAccount(harness); const guild = await createGuild(harness, account.token, 'Test Guild');