Skip to content

Commit

Permalink
Move a couple files to app/shared
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Staab committed Dec 12, 2024
1 parent 0c29b34 commit 74f3fba
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/partials/Channel.svelte → src/app/shared/Channel.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
import Spinner from "src/partials/Spinner.svelte"
import Anchor from "src/partials/Anchor.svelte"
import FlexColumn from "src/partials/FlexColumn.svelte"
import Message from "src/partials/Message.svelte"
import Modal from "src/partials/Modal.svelte"
import Subheading from "src/partials/Subheading.svelte"
import {hasNip44, sendMessage, userSettings} from "src/engine"
import {getEditorOptions} from "src/app/editor"
import Message from "src/app/shared/Message.svelte"
import Compose from "src/app/shared/Compose.svelte"
import {getEditorOptions} from "src/app/editor"
export let pubkeys
export let initialMessage = ""
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/views/ChannelsDetail.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import {DIRECT_MESSAGE} from "@welshman/util"
import {inboxRelaySelectionsByPubkey, session} from "@welshman/app"
import {repository, displayProfileByPubkey, loadInboxRelaySelections} from "@welshman/app"
import Channel from "src/partials/Channel.svelte"
import Anchor from "src/partials/Anchor.svelte"
import Channel from "src/app/shared/Channel.svelte"
import PersonCircles from "src/app/shared/PersonCircles.svelte"
import PersonAbout from "src/app/shared/PersonAbout.svelte"
import {router} from "src/app/util/router"
Expand Down
5 changes: 1 addition & 4 deletions src/app/views/NoteCreate.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,7 @@
$: loading = editor?.storage.fileUpload.loading
</script>

<form
on:submit|preventDefault={() => {
onSubmit()
}}>
<form on:submit|preventDefault={() => onSubmit()}>
<Content size="lg">
<div class="flex gap-2">
<span class="text-2xl font-bold">Create a Note</span>
Expand Down

0 comments on commit 74f3fba

Please sign in to comment.