|
@@ -96,7 +96,7 @@ const SelectAccount: React.FC<Props> = ({ putInType, accountCreateLogs, setAccou
|
|
|
// 账户
|
|
|
getAllUserAccount.run().then(res => {
|
|
|
if (res) {
|
|
|
- let options = res?.filter((item: any) => putInType === 'NOVEL' ? ['NOVEL', 'NOVEL_IAA'].includes(item.adUnitType) : putInType === 'GAME' ? ['GAME', 'GAME_IAA'].includes(item.adUnitType) : false)
|
|
|
+ let options = res?.filter((item: any) => putInType === 'NOVEL' ? ['NOVEL', 'NOVEL_IAA', 'SKIT_IAA'].includes(item.adUnitType) : putInType === 'GAME' ? ['GAME', 'GAME_IAA'].includes(item.adUnitType) : false)
|
|
|
setOptions(options || [])
|
|
|
setDataSource(options || [])
|
|
|
}
|