Skip to content

Commit

Permalink
devop: remove exchange functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
kvhnuke committed Jan 4, 2024
1 parent 673046b commit 538e461
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: MacOS Safari Deploy

on: [push]
on: []

jobs:
buildApp:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
<a class="network-activity__action-item" @click="$emit('toggle:deposit')">
<Deposit />Deposit
</a>
<div class="network-activity__action-divider" />
<a class="network-activity__action-item" @click="$emit('open:buyAction')">
<div v-if="showExchange" class="network-activity__action-divider" />
<a
v-if="showExchange"
class="network-activity__action-item"
@click="$emit('open:buyAction')"
>
<Buy />Buy/Sell
</a>
<div class="network-activity__action-divider" />
Expand All @@ -18,8 +22,9 @@
>
<Send />Send
</router-link>
<div class="network-activity__action-divider" />
<div v-if="showExchange" class="network-activity__action-divider" />
<router-link
v-if="showExchange"
class="network-activity__action-item"
:to="{
name: 'swap',
Expand All @@ -39,6 +44,7 @@ import Send from "@action/icons/actions/send.vue";
import Swap from "@action/icons/actions/swap.vue";
import { useRoute } from "vue-router";
const route = useRoute();
const showExchange = false;
defineEmits<{
(e: "toggle:deposit"): void;
Expand Down

1 comment on commit 538e461

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.