Use SDK for reading database offer for Tables API (#226)
This commit is contained in:
parent
666a378b3b
commit
28ceb18d73
|
@ -16,7 +16,11 @@ export const readDatabaseOffer = async (
|
|||
): Promise<DataModels.OfferWithHeaders> => {
|
||||
let offerId = params.offerId;
|
||||
if (!offerId) {
|
||||
if (window.authType === AuthType.AAD && !userContext.useSDKOperations) {
|
||||
if (
|
||||
window.authType === AuthType.AAD &&
|
||||
!userContext.useSDKOperations &&
|
||||
userContext.defaultExperience !== DefaultAccountExperienceType.Table
|
||||
) {
|
||||
try {
|
||||
offerId = await getDatabaseOfferIdWithARM(params.databaseId);
|
||||
} catch (error) {
|
||||
|
|
Loading…
Reference in New Issue