Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit 169fcc2

Browse files
committed
correct revert
1 parent b386c48 commit 169fcc2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/modules/pool/alerts/usePoolAlerts.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ export function usePoolAlerts(pool: Pool) {
5454

5555
const getTokenPoolAlerts = (pool: Pool): PoolAlert[] => {
5656
const poolTokens = pool.poolTokens as GqlPoolTokenDetail[]
57+
5758
const alerts: PoolAlert[] = []
5859

5960
poolTokens?.forEach(token => {
@@ -62,7 +63,7 @@ export function usePoolAlerts(pool: Pool) {
6263
identifier: `TokenNotAllowed-${token.symbol}`,
6364
content: `The token ${token.symbol} is currently not supported.`,
6465
status: 'error',
65-
isSoftWarning: true,
66+
isSoftWarning: false,
6667
})
6768
}
6869

0 commit comments

Comments
 (0)