Skip to content

Commit

Permalink
revert featureFlag change
Browse files Browse the repository at this point in the history
  • Loading branch information
Takeno-hito committed Aug 9, 2024
1 parent ceeaff1 commit b8bdb7c
Showing 1 changed file with 7 additions and 20 deletions.
27 changes: 7 additions & 20 deletions src/components/Main/NavigationBar/NavigationContent/HomeTab.vue
Original file line number Diff line number Diff line change
@@ -1,23 +1,12 @@
<template>
<div>
<div v-if="FlagStatus['flag_test']">
<navigation-content-container
v-if="homeChannelWithTree.length > 0"
subtitle="testチャンネル"
:class="$style.item"
>
<channel-tree :channels="homeChannelWithTree" show-shortened-path />
</navigation-content-container>
</div>
<div v-else>
<navigation-content-container
v-if="homeChannelWithTree.length > 0"
subtitle="ホームチャンネル"
:class="$style.item"
>
<channel-tree :channels="homeChannelWithTree" show-shortened-path />
</navigation-content-container>
</div>
<navigation-content-container
v-if="homeChannelWithTree.length > 0"
subtitle="ホームチャンネル"
:class="$style.item"
>
<channel-tree :channels="homeChannelWithTree" show-shortened-path />
</navigation-content-container>
<navigation-content-container
v-if="
dmChannelsWithNotification.length + channelsWithNotification.length !==
Expand Down Expand Up @@ -63,8 +52,6 @@ import useChannelsWithNotification from '/@/composables/subscription/useChannels
import { filterTrees } from '/@/lib/basic/tree'
import { useFeatureFlagSettings } from '/@/store/app/featureFlagSettings'

Check warning on line 53 in src/components/Main/NavigationBar/NavigationContent/HomeTab.vue

View workflow job for this annotation

GitHub Actions / run lint

'useFeatureFlagSettings' is defined but never used
const { FlagStatus } = useFeatureFlagSettings()
const { homeChannelTree } = useChannelTree()
const { channelSessionsMap } = useDomainRtcStore()
const { detail } = useMeStore()
Expand Down

0 comments on commit b8bdb7c

Please sign in to comment.