mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-01 19:18:05 +00:00
fix(ui): remove all option from activity feed for my-data (#11007)
* fix(ui): remove all option from activity feed for my-data * fix silent signin issue
This commit is contained in:
parent
32e9ae337f
commit
709fce6013
@ -151,7 +151,7 @@ const ActivityFeedList: FC<ActivityFeedListProp> = ({
|
||||
() =>
|
||||
isEntityFeed
|
||||
? filterList.filter((f) => f.value === 'ALL' || f.value === 'MENTIONS')
|
||||
: filterList.slice(),
|
||||
: filterList.slice(1), // Do not show ALL option on my-data
|
||||
[isEntityFeed]
|
||||
);
|
||||
|
||||
|
||||
@ -281,7 +281,7 @@ export const AuthProvider = ({
|
||||
startTokenExpiryTimer();
|
||||
})
|
||||
.catch((err) => {
|
||||
if (err.message.includes('Frame window timeouted out')) {
|
||||
if (err.message.includes('Frame window timed out')) {
|
||||
silentSignInRetries = 0;
|
||||
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
||||
startTokenExpiryTimer();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user