feature/marketplace icons (#1921)

* add registry icons, update links, clean up code (#1913)

* add registry icons, update links, clean up code

* remove seeding of registry icon and name

* fix install wizard copy

Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com>

* remove references to bep and chime

* fix shutdown language and remove chime from initializing screen

* fix type error

Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com>
Co-authored-by: Lucy C <12953208+elvece@users.noreply.github.com>
Co-authored-by: Matt Hill <matthewonthemoon@gmail.com>
This commit is contained in:
Aiden McClelland
2022-11-09 12:08:39 -07:00
parent c1ac66f6e5
commit d6bf52c11f
47 changed files with 275 additions and 162 deletions

View File

@@ -47,7 +47,7 @@ export function getErrorMessage(
): string | IonicSafeString {
if (!message) {
message = 'Unknown Error.'
link = 'https://start9.com/latest/support/FAQ'
link = 'https://docs.start9.com/latest/support/faq'
}
if (link) {

View File

@@ -32,19 +32,8 @@ export type RPCResponse<T> = RPCSuccessRes<T> | RPCErrorRes
export interface RPCOptions {
method: string
headers?: {
[header: string]: string | string[]
}
params: {
[param: string]:
| string
| number
| boolean
| object
| string[]
| number[]
| null
}
headers?: Record<string, string | string[]>
params: Record<string, any>
timeout?: number
}