Remove maxWidth for error messages
This commit is contained in:
parent
9eb2fdf302
commit
fdec20798e
@ -29,7 +29,7 @@ export const AirdropUpload = ({ onChange }: AirdropUploadProps) => {
|
|||||||
}
|
}
|
||||||
return onChange(accountsData)
|
return onChange(accountsData)
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
reader.readAsText(event.target.files[0])
|
reader.readAsText(event.target.files[0])
|
||||||
|
@ -78,7 +78,7 @@ export const CollectionDetails = ({ onChange, uploadMethod, coverImageUrl }: Col
|
|||||||
onChange(data)
|
onChange(data)
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
}
|
}
|
||||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [
|
}, [
|
||||||
|
@ -183,7 +183,7 @@ export const UploadDetails = ({ onChange }: UploadDetailsProps) => {
|
|||||||
}
|
}
|
||||||
onChange(data)
|
onChange(data)
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
}
|
}
|
||||||
}, [
|
}, [
|
||||||
assetFilesArray,
|
assetFilesArray,
|
||||||
|
@ -61,7 +61,7 @@ export const CollectionQueries = ({
|
|||||||
{
|
{
|
||||||
placeholderData: null,
|
placeholderData: null,
|
||||||
onError: (error: any) => {
|
onError: (error: any) => {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
enabled: Boolean(sg721ContractAddress && minterContractAddress && type),
|
enabled: Boolean(sg721ContractAddress && minterContractAddress && type),
|
||||||
retry: false,
|
retry: false,
|
||||||
|
@ -83,7 +83,7 @@ export const useWalletStore = create(
|
|||||||
init(signer)
|
init(signer)
|
||||||
if (walletChange) set({ initializing: false })
|
if (walletChange) set({ initializing: false })
|
||||||
} catch (err: any) {
|
} catch (err: any) {
|
||||||
toast.error(err?.message)
|
toast.error(err?.message, { style: { maxWidth: 'none' } })
|
||||||
set({ initializing: false })
|
set({ initializing: false })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -113,7 +113,7 @@ export const useWalletStore = create(
|
|||||||
const client = (await createQueryClient()) as SigningCosmWasmClient
|
const client = (await createQueryClient()) as SigningCosmWasmClient
|
||||||
set({ client })
|
set({ client })
|
||||||
} catch (err: any) {
|
} catch (err: any) {
|
||||||
toast.error(err?.message)
|
toast.error(err?.message, { style: { maxWidth: 'none' } })
|
||||||
set({ initializing: false })
|
set({ initializing: false })
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -88,11 +88,11 @@ const CollectionCreationPage: NextPage = () => {
|
|||||||
setReadyToCreate(true)
|
setReadyToCreate(true)
|
||||||
})
|
})
|
||||||
.catch((err) => {
|
.catch((err) => {
|
||||||
toast.error(`Error in Whitelist Configuration: ${err.message}`)
|
toast.error(`Error in Whitelist Configuration: ${err.message}`, { style: { maxWidth: 'none' } })
|
||||||
setReadyToCreate(false)
|
setReadyToCreate(false)
|
||||||
})
|
})
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
setUploading(false)
|
setUploading(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -145,7 +145,7 @@ const CollectionCreationPage: NextPage = () => {
|
|||||||
setCreatingCollection(false)
|
setCreatingCollection(false)
|
||||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||||
} catch (error: any) {
|
} catch (error: any) {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
setCreatingCollection(false)
|
setCreatingCollection(false)
|
||||||
setUploading(false)
|
setUploading(false)
|
||||||
}
|
}
|
||||||
|
@ -79,7 +79,7 @@ const CollectionQueriesPage: NextPage = () => {
|
|||||||
{
|
{
|
||||||
placeholderData: null,
|
placeholderData: null,
|
||||||
onError: (error: any) => {
|
onError: (error: any) => {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
enabled: Boolean(sg721ContractAddress && minterContractAddress && type),
|
enabled: Boolean(sg721ContractAddress && minterContractAddress && type),
|
||||||
retry: false,
|
retry: false,
|
||||||
|
@ -119,7 +119,7 @@ const MinterExecutePage: NextPage = () => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
onError: (error) => {
|
onError: (error) => {
|
||||||
toast.error(String(error))
|
toast.error(String(error), { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -216,7 +216,7 @@ const MinterInstantiatePage: NextPage = () => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
onError: (error) => {
|
onError: (error) => {
|
||||||
toast.error(String(error))
|
toast.error(String(error), { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -57,7 +57,7 @@ const MinterQueryPage: NextPage = () => {
|
|||||||
{
|
{
|
||||||
placeholderData: null,
|
placeholderData: null,
|
||||||
onError: (error: any) => {
|
onError: (error: any) => {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
enabled: Boolean(contractAddress && contract && wallet),
|
enabled: Boolean(contractAddress && contract && wallet),
|
||||||
},
|
},
|
||||||
|
@ -119,7 +119,7 @@ const Sg721ExecutePage: NextPage = () => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
onError: (error) => {
|
onError: (error) => {
|
||||||
toast.error(String(error))
|
toast.error(String(error), { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -69,7 +69,7 @@ const Sg721QueryPage: NextPage = () => {
|
|||||||
{
|
{
|
||||||
placeholderData: null,
|
placeholderData: null,
|
||||||
onError: (error: any) => {
|
onError: (error: any) => {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
enabled: Boolean(contractAddress && contract && wallet),
|
enabled: Boolean(contractAddress && contract && wallet),
|
||||||
},
|
},
|
||||||
|
@ -90,7 +90,7 @@ const WhitelistExecutePage: NextPage = () => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
onError: (error) => {
|
onError: (error) => {
|
||||||
toast.error(String(error))
|
toast.error(String(error), { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -91,7 +91,7 @@ const Sg721InstantiatePage: NextPage = () => {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
onError: (error) => {
|
onError: (error) => {
|
||||||
toast.error(String(error))
|
toast.error(String(error), { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
@ -59,7 +59,7 @@ const WhitelistQueryPage: NextPage = () => {
|
|||||||
{
|
{
|
||||||
placeholderData: null,
|
placeholderData: null,
|
||||||
onError: (error: any) => {
|
onError: (error: any) => {
|
||||||
toast.error(error.message)
|
toast.error(error.message, { style: { maxWidth: 'none' } })
|
||||||
},
|
},
|
||||||
enabled: Boolean(contractAddress && contract && wallet),
|
enabled: Boolean(contractAddress && contract && wallet),
|
||||||
},
|
},
|
||||||
|
@ -6,6 +6,6 @@ export async function copy(text: string, message: Renderable = 'Copied to clipbo
|
|||||||
await navigator.clipboard.writeText(text)
|
await navigator.clipboard.writeText(text)
|
||||||
return toast.success(message)
|
return toast.success(message)
|
||||||
} catch (err: unknown) {
|
} catch (err: unknown) {
|
||||||
return toast.error(String(err))
|
return toast.error(String(err), { style: { maxWidth: 'none' } })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user