Skip to content

Commit

Permalink
Fix opening vesting payment proposal from card options. (#1312)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahSaso authored Jul 25, 2023
1 parent 62a1e2a commit 592ccea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ export const NativeStakingModal = ({
{
actionKey: ActionKey.Execute,
data: {
chainId,
address: vestingContractAddress,
message: JSON.stringify(
{
Expand Down Expand Up @@ -170,6 +171,7 @@ export const NativeStakingModal = ({
{
actionKey: ActionKey.Execute,
data: {
chainId,
address: vestingContractAddress,
message: JSON.stringify(
{
Expand Down Expand Up @@ -210,6 +212,7 @@ export const NativeStakingModal = ({
{
actionKey: ActionKey.Execute,
data: {
chainId,
address: vestingContractAddress,
message: JSON.stringify(
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ export const VestingPaymentCard = (vestingInfo: VestingInfo) => {
{
actionKey: ActionKey.Execute,
data: {
chainId,
address: vestingContractAddress,
message: JSON.stringify(
{
Expand Down Expand Up @@ -160,6 +161,7 @@ export const VestingPaymentCard = (vestingInfo: VestingInfo) => {
actions: validators?.map((validator) => ({
actionKey: ActionKey.Execute,
data: {
chainId,
address: vestingContractAddress,
message: JSON.stringify(
{
Expand Down

2 comments on commit 592ccea

@vercel
Copy link

@vercel vercel bot commented on 592ccea Jul 25, 2023

Choose a reason for hiding this comment

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

@vercel
Copy link

@vercel vercel bot commented on 592ccea Jul 25, 2023

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.