Skip to content

Commit

Permalink
Re-org
Browse files Browse the repository at this point in the history
  • Loading branch information
ascorbic committed Nov 5, 2024
1 parent 55e7e27 commit 395406b
Show file tree
Hide file tree
Showing 11 changed files with 8 additions and 8 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions packages/astro-embed-bluesky/src/external.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
import { AppBskyEmbedExternal } from '@atproto/api';
import './shared/styles.css';
import './styles.css';
interface Props {
embed: AppBskyEmbedExternal.View;
compact?: boolean;
compact?: boolean | undefined;
}
const { uri, thumb, title, description } = Astro.props.embed.external;
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-embed-bluesky/src/list.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { AppBskyGraphDefs } from '@atproto/api';
import { atUriToListUri } from './utils';
import Card from './shared/card.astro';
import Card from './card.astro';
interface Props {
record: AppBskyGraphDefs.ListView;
Expand Down
4 changes: 2 additions & 2 deletions packages/astro-embed-bluesky/src/media.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import {
AppBskyEmbedVideo,
} from "@atproto/api";
import External from "./external.astro";
import ImageGrid from "./shared/image-grid.astro";
import VideoThumbnail from "./shared/video-thumbnail.astro";
import ImageGrid from "./image-grid.astro";
import VideoThumbnail from "./video-thumbnail.astro";
import RecordWithMedia from "./record-with-media.astro";
import Record from "./record.astro";
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-embed-bluesky/src/record-with-media.astro
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Record from "./record.astro";
interface Props {
embed: AppBskyEmbedRecordWithMedia.View;
postUrl: string;
compact?: boolean;
compact?: boolean | undefined;
}
const { compact } = Astro.props;
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-embed-bluesky/src/record.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import List from "./list.astro";
interface Props {
embed: AppBskyEmbedRecord.View;
compact?: boolean;
compact?: boolean | undefined;
}
---
Expand Down
2 changes: 1 addition & 1 deletion packages/astro-embed-bluesky/src/starter-pack.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { AppBskyGraphDefs, AppBskyGraphStarterpack } from "@atproto/api";
import { atUriToStarterPackUri, starterPackOgImage } from "./utils";
import Card from "./shared/card.astro";
import Card from "./card.astro";
interface Props {
record: AppBskyGraphDefs.StarterPackViewBasic;
Expand Down
File renamed without changes.

0 comments on commit 395406b

Please sign in to comment.