Skip to content

Commit

Permalink
Add StorySnap
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaapple committed Nov 10, 2024
1 parent fec5c3b commit 275b14c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,16 +209,17 @@ Here's how you can contribute:

## Roadmap

- [MemFree Roadmap](https://feedback.memfree.me/roadmap)
- AI Coding Assistant

## License

MemFree is backed by [MemFree](https://www.memfree.me/) and licensed under [MIT](https://github.com/memfreeme/memfree/blob/main/LICENSE).

## Powered By MemFree

- [PageGen AI Page Generator](https://pagegen.ai/)
- [MemFree Hybrid AI Search](https://www.memfree.me)
- [PageGen - AI Page Generator](https://pagegen.ai)
- [MemFree - Hybrid AI Search](https://www.memfree.me)
- [StorySnap - Turn Images Into Stories](https://www.snapstoryai.com)
- [React + Shadcn UI Preview](https://reactshadcn.com)

## Star History
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/search/search-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ const SearchBar: React.FC<Props> = ({
type="button"
aria-label={t('search-tip')}
disabled={(content.trim() === '' && files.length === 0) || isUploading}
className="text-gray-500 hover:text-primary disabled:cursor-not-allowed disabled:opacity-50"
className="text-gray-500 hover:text-primary disabled:cursor-not-allowed disabled:opacity-50 p-2"
onClick={handleClick}
>
<span className="sr-only">{t('search-tip')}</span>
Expand Down
1 change: 0 additions & 1 deletion frontend/lib/shared-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
export function isValidUrl(input: string): boolean {
// return early if the url cannot be parsed
if ('canParse' in URL && !URL.canParse(input)) return false;

try {
const url = new URL(input);
if (url.protocol !== 'http:' && url.protocol !== 'https:') {
Expand Down

0 comments on commit 275b14c

Please sign in to comment.