2023-10-23 12:04:17 +00:00
|
|
|
import { LocalStorageKeys } from 'constants/localStorageKeys'
|
2023-08-17 09:56:32 +00:00
|
|
|
|
|
|
|
export default function checkAutoLendEnabled(accountId: string) {
|
2023-10-23 12:04:17 +00:00
|
|
|
const storageItem = localStorage.getItem(LocalStorageKeys.AUTO_LEND_ENABLED_ACCOUNT_IDS)
|
2023-08-17 09:56:32 +00:00
|
|
|
const autoLendEnabledAccountIds: string[] = storageItem ? JSON.parse(storageItem) : []
|
|
|
|
|
|
|
|
return autoLendEnabledAccountIds.includes(accountId)
|
|
|
|
}
|