fix: anchor 이동에서 #을 남기지 않도록
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
export function scrollHardTo(elementId: string): void {
|
||||
const element = document.getElementById(elementId);
|
||||
if(!element){
|
||||
return;
|
||||
}
|
||||
element.scrollIntoView({
|
||||
behavior: 'auto',
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user