Skip to content

Commit

Permalink
show bot support warning in tx builder
Browse files Browse the repository at this point in the history
  • Loading branch information
gsteenkamp89 committed Feb 19, 2024
1 parent 381b6bb commit de2c32d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/plugins/oSnap/Create.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import {
getGnosisSafeBalances,
getGnosisSafeCollectibles,
getIsOsnapEnabled,
getModuleAddressForTreasury,
validateOsnapTransaction
getModuleAddressForTreasury
} from './utils';
import OsnapMarketingWidget from './components/OsnapMarketingWidget.vue';
import BotSupportWarning from './components/BotSupportWarning.vue';
const props = defineProps<{
space: ExtendedSpace;
Expand Down Expand Up @@ -276,6 +276,11 @@ onMounted(async () => {
:selectedSafe="newPluginData.safe"
@updateSafe="updateSafe($event)"
/>
<BotSupportWarning
v-if="newPluginData.safe"
:safe-address="newPluginData.safe?.safeAddress"
:chain-id="newPluginData.safe?.network"
/>
<div class="mt-4 border-b last:border-b-0">
<TransactionBuilder
v-if="!!newPluginData.safe"
Expand Down

0 comments on commit de2c32d

Please sign in to comment.