Skip to content

Commit

Permalink
fix: respect NIP spec
Browse files Browse the repository at this point in the history
  • Loading branch information
reyamir committed Jan 31, 2024
1 parent cc48a4f commit b7f4af7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
7 changes: 1 addition & 6 deletions apps/desktop/src/routes/settings/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,6 @@ export function ProfileSettingScreen() {

let content = {
...data,
username: data.name,
display_name: data.displayName,
bio: data.about,
image: picture,
cover: banner,
picture,
banner,
};
Expand Down Expand Up @@ -140,7 +135,7 @@ export function ProfileSettingScreen() {
</label>
<input
type={"text"}
{...register("displayName")}
{...register("display_name")}
spellCheck={false}
className="relative h-11 w-full rounded-lg border-transparent bg-neutral-100 px-3 py-1 text-neutral-900 !outline-none backdrop-blur-xl placeholder:text-neutral-500 focus:border-blue-500 focus:ring focus:ring-blue-200 dark:bg-neutral-900 dark:text-neutral-100"
/>
Expand Down
2 changes: 1 addition & 1 deletion packages/ark/src/provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ export const LumeProvider = ({ children }: PropsWithChildren<object>) => {
return (
<div
data-tauri-drag-region
className="relative flex items-center justify-center w-screen h-screen"
className="relative flex items-center justify-center w-screen h-screen bg-white dark:bg-black"
>
<div className="flex flex-col items-start max-w-2xl gap-1">
<h5 className="font-semibold uppercase">TIP:</h5>
Expand Down

0 comments on commit b7f4af7

Please sign in to comment.