move animation settings

This commit is contained in:
saml33 2023-11-03 12:42:43 +11:00
parent c96815afea
commit 5a64e343e8
2 changed files with 1 additions and 2 deletions

View File

@ -117,6 +117,7 @@ const TabContent = ({
title={activeTab} title={activeTab}
/> />
<DisplaySettings /> <DisplaySettings />
<AnimationSettings />
</> </>
) )
case ACCOUNT: case ACCOUNT:
@ -158,7 +159,6 @@ const TabContent = ({
/> />
<AutoConnectSettings /> <AutoConnectSettings />
<PreferredExplorerSettings /> <PreferredExplorerSettings />
<AnimationSettings />
<SoundSettings /> <SoundSettings />
<TelemetrySettings /> <TelemetrySettings />
</> </>

View File

@ -337,7 +337,6 @@ export function isSpotTradeActivityFeedItem(
export function isSwapActivityFeedItem( export function isSwapActivityFeedItem(
item: ActivityFeed, item: ActivityFeed,
): item is SwapActivity { ): item is SwapActivity {
console.log(item)
if (item.activity_type === 'swap') { if (item.activity_type === 'swap') {
return true return true
} }