Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/app/auth/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export default function IndexScreen() {
'Account Not Found',
'No account exists with this email. Please sign up instead.'
);
setLoading(false);
return;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/app/main/groups/createGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const CreateGroup = () => {
</Text>
<SearchBar placeholder="Search friends..." onSearch={setSearchQuery} value={searchQuery} />

<ScrollView className="mt-2 max-h-[600px] w-10/12">
<ScrollView className="mt-2 max-h-[600px] w-full">
{filteredFriends.map(({ userId, pfpUrl, username }, idx) => {
const selected = selectedFriendIds.includes(userId);

Expand Down
10 changes: 10 additions & 0 deletions src/components/camera/photopreview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,20 @@ const PhotoPreview = ({

const exifOrientation = photo.exif?.Orientation || 6;

console.log(exifOrientation);

if (exifOrientation === 1) {
rotation = 90;
} else if (exifOrientation === 2) {
rotation = 270;
} else if (exifOrientation === 3) {
rotation = 270;
} else if (exifOrientation === 4) {
rotation = 90;
} else if (exifOrientation === 5) {
rotation = 0;
} else if (exifOrientation === 7) {
rotation = 180;
} else if (exifOrientation === 8) {
rotation = 180;
}
Expand Down