Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncox committed Dec 6, 2024
1 parent 1f839ba commit e3889b7
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/input/publickey.svelte
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
import type { ComponentProps } from 'svelte';
import TextInput from './text.svelte';
interface PublicKeyInputProps extends ComponentProps<TextInput> {
interface PublicKeyInputProps extends ComponentProps<typeof TextInput> {
valid?: boolean;
value: PublicKey | undefined;
debug?: boolean;
2 changes: 1 addition & 1 deletion src/routes/[network]/(account)/create-account/+page.svelte
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@
let accountValid = $state(false);
let accountName: Name = $state(Name.from(''));
let publicKeyInput: TextInput | undefined = $state();
let publicKeyInput: PublicKeyInput | undefined = $state();
let publicKeyRef: HTMLInputElement | undefined = $state();
let publicKeyValid = $state(false);
let publicKey: PublicKey | undefined = $state();
4 changes: 1 addition & 3 deletions src/routes/[network]/(account)/create-account/+page.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import type { PageLoad } from './$types';
import * as m from '$lib/paraglide/messages';

export const load: PageLoad = async ({ parent }) => {
const { network } = await parent();
export const load: PageLoad = async () => {
return {
title: 'Create Account',
subtitle: 'Create an account using a token transfer',

0 comments on commit e3889b7

Please sign in to comment.