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
11 changes: 1 addition & 10 deletions apps/web/src/app/settings/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,6 @@ export default async function UserSettingsProfilePage() {
const authClient = await clerkClient();
const user = await authClient.users.getUser(userId);

const params = new URLSearchParams({
height: "112",
width: "112",
quality: "100",
fit: "crop",
});

return (
<div className="flex flex-col gap-10">
<Card id="account">
Expand Down Expand Up @@ -80,9 +73,7 @@ export default async function UserSettingsProfilePage() {
<Separator />
</div>
<CardContent className="space-y-12">
<ChangeProfilePictureForm
profilePicture={`${user.imageUrl}?${params.toString()}`}
/>
<ChangeProfilePictureForm profilePicture={user.imageUrl} />
<ChangeResumeForm
resume={userSettings.data.resume ?? undefined}
/>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/dash/UserDash.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export default async function UserDash({
<GraduationCapIcon className="mr-2 h-4 w-4" />
{`${userData.major}, ${userData.graduationYear}`}
</p>
<p className="mt-2 flex items-center text-balance text-base text-muted-foreground">
<p className="text-balance mt-2 flex items-center text-base text-muted-foreground">
{`Member since ${joinedDate}`}
</p>
{/* come back and configure wrangler json */}
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/events/id/EventDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export default async function EventDetails({
Description
</h2>
<p
className={`w-full text-pretty text-lg 2xl:text-2xl `}
className={`text-pretty w-full text-lg 2xl:text-2xl `}
>
{description}
</p>
Expand Down