Skip to content

Commit

Permalink
remove entity product name hardcoding
Browse files Browse the repository at this point in the history
  • Loading branch information
michavie committed Feb 15, 2024
1 parent 018d888 commit 2d19e81
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/shared/ui/AppSelector.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import React from 'react'
import pluralize from 'pluralize'
import { Config } from '../../config'
import { Input } from '@peerme/web-ui'
import { useEffect, useState } from 'react'
import { _AppPresenter } from './_AppPresenter'
import { Transaction } from '@multiversx/sdk-core'
import { _AppSelectorItem } from './_AppSelectorItem'
import { ExtensionInfo, ExtensionConfig } from '../types'
import { ProposalAction, useDebounce } from '@peerme/core-ts'
import { ProposalAction, useDebounce, EntityConfig } from '@peerme/core-ts'

type NotificationType = 'success' | 'info' | 'warning' | 'error' | 'vibe'

Expand Down Expand Up @@ -37,7 +38,9 @@ export const AppSelector = (props: Props) => {
{activeApp === null && (
<header className="mb-4">
<h2 className="mb-1">Apps</h2>
<p className="text-xl mb-2">Peering DAOs can easily interact with the apps you love the most.</p>
<p className="text-xl mb-2">
{pluralize(EntityConfig.ProductName)} can easily interact with the apps you love the most.
</p>
{props.config.hasEarlyAccess && (
<Input
placeholder="Search Apps ..."
Expand Down

0 comments on commit 2d19e81

Please sign in to comment.