Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(customization): update custom dashboard for scroll #2647

Merged
merged 11 commits into from
Jul 2, 2024
Prev Previous commit
Next Next commit
feat(customization): modify button action type
  • Loading branch information
larisa17 committed Jul 2, 2024
commit df7bf4d79eb9633e754545bf0273eec11b6f1817
4 changes: 2 additions & 2 deletions app/utils/customizationUtils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export type Customization = {
action: {
text: string;
url: string;
type?: string; // TODO: @Larisa This should be only "Simple Link" or "Onchain Push"
type?: "Simple Link" | "Onchain Push";
};
displayInfoTooltip?: {
shouldDisplay?: boolean;
Expand Down Expand Up @@ -82,7 +82,7 @@ type CustomizationResponse = {
action?: {
text?: string;
url?: string;
type?: string; // TODO: @Larisa This should be only "Simple Link" or "Onchain Push"
type?: "Simple Link" | "Onchain Push";
};
displayInfoTooltip?: {
shouldDisplay?: boolean;
Expand Down
Loading