mirror of
https://github.com/placeholder-soft/web.git
synced 2026-01-12 22:45:00 +08:00
remove job location (#1086)
This commit is contained in:
@@ -23,7 +23,7 @@ type JobProps = {
|
||||
};
|
||||
|
||||
export function Job({ job }: JobProps) {
|
||||
const { id, title, location } = job;
|
||||
const { id, title } = job;
|
||||
|
||||
const href = useMemo(
|
||||
() => ({
|
||||
@@ -43,7 +43,6 @@ export function Job({ job }: JobProps) {
|
||||
<div className="flex w-full flex-col items-center justify-between text-white sm:flex-row">
|
||||
<div className="flex w-full flex-col">
|
||||
<p className="w-full text-xl">{title}</p>
|
||||
<small className="opacity-70">{location.name}</small>
|
||||
</div>
|
||||
|
||||
<Button
|
||||
|
||||
Reference in New Issue
Block a user